-
Notifications
You must be signed in to change notification settings - Fork 106
/
tabs.dart
118 lines (98 loc) · 3.16 KB
/
tabs.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
// 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';
const Duration _kTabAnimationDuration = Duration(milliseconds: 300);
const Duration _kPauseDuration = Duration(seconds: 2);
final Duration _kTotalAnimationTime = _kPauseDuration +
_kTabAnimationDuration +
_kPauseDuration +
_kTabAnimationDuration +
_kPauseDuration;
class TabsDiagram extends StatefulWidget with DiagramMetadata {
const TabsDiagram(this.name, {super.key});
@override
final String name;
@override
State<TabsDiagram> createState() => TabsDiagramState();
@override
Duration? get duration => _kTotalAnimationTime;
}
class TabsDiagramState extends State<TabsDiagram>
with TickerProviderStateMixin, LockstepStateMixin {
final List<GlobalKey> _tabKeys = <GlobalKey>[
GlobalKey(),
GlobalKey(),
];
late final List<Tab> myTabs = <Tab>[
Tab(key: _tabKeys[0], text: 'LEFT'),
Tab(key: _tabKeys[1], text: 'RIGHT'),
];
late TabController _tabController;
Future<void> startAnimation() async {
await waitLockstep(_kPauseDuration);
final RenderBox tab0 =
_tabKeys[0].currentContext!.findRenderObject()! as RenderBox;
final RenderBox tab1 =
_tabKeys[1].currentContext!.findRenderObject()! as RenderBox;
final Offset tab0Offset = tab0.localToGlobal(tab0.size.center(Offset.zero));
final Offset tab1Offset = tab1.localToGlobal(tab1.size.center(Offset.zero));
final WidgetController controller = DiagramWidgetController.of(context);
await controller.tapAt(tab1Offset);
await waitLockstep(_kPauseDuration);
await controller.tapAt(tab0Offset);
}
@override
void initState() {
super.initState();
_tabController = TabController(vsync: this, length: myTabs.length);
startAnimation();
}
@override
void dispose() {
_tabController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return ConstrainedBox(
key: UniqueKey(),
constraints: BoxConstraints.tight(const Size(540.0, 960.0)),
child: MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(
bottom: TabBar(
controller: _tabController,
tabs: myTabs,
),
),
body: TabBarView(
controller: _tabController,
children: myTabs.map((Tab tab) {
final String label = tab.text!.toLowerCase();
return Center(
child: Text(
'This is the $label tab',
style: const TextStyle(fontSize: 36),
),
);
}).toList(),
),
),
),
);
}
}
class TabsDiagramStep extends DiagramStep {
@override
final String category = 'material';
@override
Future<List<TabsDiagram>> get diagrams async => const <TabsDiagram>[
TabsDiagram('tabs'),
];
}