-
Notifications
You must be signed in to change notification settings - Fork 106
/
ink_response_small.dart
119 lines (106 loc) · 3.53 KB
/
ink_response_small.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
113
114
115
116
117
118
119
// Copyright 2013 The Flutter 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 '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';
class InkResponseSmallDiagram extends StatefulWidget with DiagramMetadata {
InkResponseSmallDiagram({super.key});
@override
String get name => 'ink_response_small';
@override
Duration get startAt => const Duration(milliseconds: 550);
@override
State<InkResponseSmallDiagram> createState() =>
_InkResponseSmallDiagramState();
}
class _InkResponseSmallDiagramState extends State<InkResponseSmallDiagram> {
final GlobalKey canvasKey = GlobalKey();
final GlobalKey childKey = GlobalKey();
final GlobalKey heroKey = GlobalKey();
final GlobalKey splashKey = GlobalKey();
Future<void> startAnimation() async {
// Wait for the tree to finish building before attempting to find our
// RenderObject.
await Future<void>.delayed(Duration.zero);
final RenderBox target =
splashKey.currentContext!.findRenderObject()! as RenderBox;
final Offset targetOffset =
target.localToGlobal(target.size.bottomRight(Offset.zero));
final WidgetController controller = DiagramWidgetController.of(context);
await controller.startGesture(targetOffset);
}
@override
void initState() {
super.initState();
startAnimation();
}
@override
Widget build(BuildContext context) {
return ConstrainedBox(
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(
key: heroKey,
width: 150.0,
height: 100.0,
alignment: FractionalOffset.center,
child: SizedBox(
height: 45.0,
width: 100.0,
child: InkResponse(
onTap: () {},
child: Hole(
color: Colors.blue,
key: childKey,
),
),
),
),
),
Center(
child: SizedBox(
key: splashKey,
width: 90.0,
height: 20.0,
),
),
Positioned.fill(
child: LabelPainterWidget(
key: canvasKey,
labels: <Label>[
Label(childKey, 'child', const FractionalOffset(0.1, 0.85)),
Label(
splashKey, 'splash', const FractionalOffset(0.8, 0.6)),
Label(heroKey, 'highlight',
const FractionalOffset(0.45, 0.25)),
],
heroKey: heroKey,
),
),
],
),
),
),
);
}
}
class InkResponseSmallDiagramStep extends DiagramStep {
final List<InkResponseSmallDiagram> _diagrams = <InkResponseSmallDiagram>[
InkResponseSmallDiagram(),
];
@override
final String category = 'material';
@override
Future<List<InkResponseSmallDiagram>> get diagrams async => _diagrams;
}