forked from flutter/assets-for-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ink_response_large.dart
112 lines (99 loc) · 3.49 KB
/
ink_response_large.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'dart:io';
import 'package:diagram_capture/diagram_capture.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'diagram_step.dart';
import 'utils.dart';
final GlobalKey splashKey = GlobalKey();
class InkResponseLargeDiagram extends StatelessWidget implements DiagramMetadata {
InkResponseLargeDiagram({Key? key}) : super(key: key);
final GlobalKey canvasKey = GlobalKey();
final GlobalKey childKey = GlobalKey();
final GlobalKey heroKey = GlobalKey();
@override
String get name => 'ink_response_large';
@override
Widget build(BuildContext context) {
return ConstrainedBox(
key: UniqueKey(),
constraints: BoxConstraints.tight(const Size(280.0, 180.0)),
child: Theme(
data: ThemeData(
primarySwatch: Colors.blue,
),
child: Material(
color: const Color(0xFFFFFFFF),
child: Stack(
children: <Widget>[
Center(
child: Container(
width: 150.0,
height: 100.0,
child: InkResponse(
key: heroKey,
onTap: () {},
child: Hole(
color: Colors.blue,
key: childKey,
),
),
),
),
Center(
child: Container(
width: 120.0,
height: 80.0,
alignment: FractionalOffset.bottomRight,
child: Container(
key: splashKey,
width: 20.0,
height: 25.0,
),
),
),
Positioned.fill(
child: LabelPainterWidget(
key: canvasKey,
labels: <Label>[
Label(childKey, 'child', const FractionalOffset(0.2, 0.8)),
Label(splashKey, 'splash', const FractionalOffset(0.0, 0.0)),
Label(heroKey, 'highlight', const FractionalOffset(0.45, 0.3)),
],
heroKey: heroKey,
),
),
],
),
),
),
);
}
}
class InkResponseLargeDiagramStep extends DiagramStep<InkResponseLargeDiagram> {
InkResponseLargeDiagramStep(DiagramController controller) : super(controller) {
_diagrams.add(InkResponseLargeDiagram());
}
final List<InkResponseLargeDiagram> _diagrams = <InkResponseLargeDiagram>[];
@override
final String category = 'material';
@override
Future<List<InkResponseLargeDiagram>> get diagrams async => _diagrams;
@override
Future<File> generateDiagram(InkResponseLargeDiagram diagram) async {
controller.builder = (BuildContext context) => diagram;
controller.advanceTime(Duration.zero);
final RenderBox target = splashKey.currentContext!.findRenderObject() as RenderBox;
final Offset targetOffset = target.localToGlobal(target.size.bottomRight(Offset.zero));
final TestGesture gesture = await controller.startGesture(targetOffset);
final File result = await controller.drawDiagramToFile(
File('${diagram.name}.png'),
timestamp: const Duration(milliseconds: 550),
);
await gesture.up();
return result;
}
}