-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.dart
268 lines (248 loc) · 9.04 KB
/
main.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Animated Shape',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: const ShapeScreen(),
);
}
}
class ShapeScreen extends StatefulWidget {
const ShapeScreen({Key? key}) : super(key: key);
@override
State<ShapeScreen> createState() => _ShapeScreenState();
}
class _ShapeScreenState extends State<ShapeScreen>
with TickerProviderStateMixin {
/// when playing, animation will be played
bool playing = false;
/// animation controller for the play pause button
late AnimationController _playPauseAnimationController;
/// animation & animation controller for the top-left and bottom-right bubbles
late Animation<double> _topBottomAnimation;
late AnimationController _topBottomAnimationController;
/// animation & animation controller for the top-right and bottom-left bubbles
late Animation<double> _leftRightAnimation;
late AnimationController _leftRightAnimationController;
@override
void initState() {
super.initState();
_playPauseAnimationController = AnimationController(
vsync: this, duration: const Duration(milliseconds: 300));
_topBottomAnimationController =
AnimationController(vsync: this, duration: const Duration(seconds: 1));
_leftRightAnimationController =
AnimationController(vsync: this, duration: const Duration(seconds: 1));
_topBottomAnimation = CurvedAnimation(
parent: _topBottomAnimationController, curve: Curves.decelerate)
.drive(Tween<double>(begin: 5, end: -5));
_leftRightAnimation = CurvedAnimation(
parent: _leftRightAnimationController, curve: Curves.easeInOut)
.drive(Tween<double>(begin: 5, end: -5));
_leftRightAnimationController.addStatusListener((status) {
if (status == AnimationStatus.completed) {
_leftRightAnimationController.reverse();
} else if (status == AnimationStatus.dismissed) {
_leftRightAnimationController.forward();
}
});
_topBottomAnimationController.addStatusListener((status) {
if (status == AnimationStatus.completed) {
_topBottomAnimationController.reverse();
} else if (status == AnimationStatus.dismissed) {
_topBottomAnimationController.forward();
}
});
}
@override
void dispose() {
_playPauseAnimationController.dispose();
_topBottomAnimationController.dispose();
_leftRightAnimationController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
double width = 150;
double height = 150;
return Scaffold(
backgroundColor: purple,
body: Center(
child: Stack(
clipBehavior: Clip.none,
alignment: Alignment.center,
children: [
// bottom right dark pink
AnimatedBuilder(
animation: _topBottomAnimation,
builder: (context, _) {
return Positioned(
bottom: _topBottomAnimation.value,
right: _topBottomAnimation.value,
child: Container(
width: width * 0.9,
height: height * 0.9,
decoration: BoxDecoration(
gradient: const LinearGradient(
colors: [pink, blue],
begin: Alignment.centerRight,
end: Alignment.centerLeft,
),
shape: BoxShape.circle,
boxShadow: [
BoxShadow(
color: pink.withOpacity(0.5),
blurRadius: 10,
spreadRadius: 5,
),
],
),
),
);
},
),
// top left pink
AnimatedBuilder(
animation: _topBottomAnimation,
builder: (context, _) {
return Positioned(
top: _topBottomAnimation.value,
left: _topBottomAnimation.value,
child: Container(
width: width * 0.9,
height: height * 0.9,
decoration: BoxDecoration(
color: pink.withOpacity(0.5),
shape: BoxShape.circle,
gradient: const LinearGradient(
colors: [pink, blue],
begin: Alignment.centerLeft,
end: Alignment.centerRight,
),
boxShadow: playing
? [
BoxShadow(
color: pink.withOpacity(0.5),
blurRadius: 10,
spreadRadius: 5,
),
]
: [],
),
),
);
}), // light pink
// bottom left blue
AnimatedBuilder(
animation: _leftRightAnimation,
builder: (context, _) {
return Positioned(
bottom: _leftRightAnimation.value,
left: _leftRightAnimation.value,
child: Container(
width: width * 0.9,
height: height * 0.9,
decoration: BoxDecoration(
color: blue,
shape: BoxShape.circle,
gradient: const LinearGradient(
colors: [pink, blue],
begin: Alignment.centerRight,
end: Alignment.centerLeft,
),
boxShadow: [
BoxShadow(
color: blue.withOpacity(0.5),
blurRadius: 15,
spreadRadius: 5,
),
],
),
),
);
}),
// top right dark blue
AnimatedBuilder(
animation: _leftRightAnimation,
builder: (context, _) {
return Positioned(
top: _leftRightAnimation.value,
right: _leftRightAnimation.value,
child: Container(
width: width * 0.9,
height: height * 0.9,
decoration: BoxDecoration(
color: blue,
shape: BoxShape.circle,
gradient: const LinearGradient(
colors: [pink, blue],
begin: Alignment.centerLeft,
end: Alignment.centerRight,
),
boxShadow: playing
? [
BoxShadow(
color: blue.withOpacity(0.5),
blurRadius: 10,
spreadRadius: 5,
),
]
: [],
),
),
);
},
),
// play button
GestureDetector(
onTap: () {
playing = !playing;
if (playing) {
_playPauseAnimationController.forward();
_topBottomAnimationController.forward();
Future.delayed(const Duration(milliseconds: 500), () {
_leftRightAnimationController.forward();
});
} else {
_playPauseAnimationController.reverse();
_topBottomAnimationController.stop();
_leftRightAnimationController.stop();
}
},
child: Container(
width: width,
height: height,
decoration: const BoxDecoration(
color: purple,
shape: BoxShape.circle,
),
child: Center(
child: AnimatedIcon(
icon: AnimatedIcons.play_pause,
progress: _playPauseAnimationController,
size: 100,
color: white,
),
),
),
),
],
),
),
);
}
}
const white = Colors.white;
const purple = Color(0xff1D0E2F);
const blue = Color(0xff4B5DFC);
const pink = Color(0xffD523A3);