forked from flutter/assets-for-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ink_response_small.dart
112 lines (99 loc) · 3.5 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
// 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 InkResponseSmallDiagram extends StatelessWidget implements DiagramMetadata {
InkResponseSmallDiagram({Key? key}) : super(key: key);
final GlobalKey canvasKey = GlobalKey();
final GlobalKey childKey = GlobalKey();
final GlobalKey heroKey = GlobalKey();
@override
String get name => 'ink_response_small';
@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(
key: heroKey,
width: 150.0,
height: 100.0,
alignment: FractionalOffset.center,
child: Container(
height: 45.0,
width: 100.0,
child: InkResponse(
onTap: () {},
child: Hole(
color: Colors.blue,
key: childKey,
),
),
),
),
),
Center(
child: Container(
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<InkResponseSmallDiagram> {
InkResponseSmallDiagramStep(DiagramController controller) : super(controller) {
_diagrams.add(InkResponseSmallDiagram());
}
final List<InkResponseSmallDiagram> _diagrams = <InkResponseSmallDiagram>[];
@override
final String category = 'material';
@override
Future<List<InkResponseSmallDiagram>> get diagrams async => _diagrams;
@override
Future<File> generateDiagram(InkResponseSmallDiagram 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;
}
}