animated_radial_menu.dart
5.46 KB
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
library animated_radial_menu;
import 'package:flutter/material.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'dart:math';
import 'package:vector_math/vector_math.dart' show radians;
class RadialMenu extends StatefulWidget {
// will take in list of buttons
final List<RadialButton> children;
// used for positioning the widget
final AlignmentGeometry centerButtonAlignment;
// set main button size
final double centerButtonSize;
// constructor for main button
const RadialMenu(
{Key? key,
required this.children,
this.centerButtonSize = 0.5,
this.centerButtonAlignment = Alignment.center})
: super(key: key);
@override
createState() => _RadialMenuState();
}
class _RadialMenuState extends State<RadialMenu>
with SingleTickerProviderStateMixin {
// used to control animations
AnimationController? controller;
// controller gets initialized here
@override
void initState() {
super.initState();
controller = AnimationController(
duration: const Duration(milliseconds: 900), vsync: this);
}
@override
Widget build(BuildContext context) {
return Align(
alignment: widget.centerButtonAlignment,
child: SizedBox(
width: 160,
height: 180,
child: RadialAnimation(
controller: controller!,
radialButtons: widget.children,
centerSizeOfButton: widget.centerButtonSize,
),
),
);
}
// controller gets disposed here
@override
void dispose() {
controller!.dispose();
super.dispose();
}
}
// Here all the animation will take place
class RadialAnimation extends StatelessWidget {
RadialAnimation(
{Key? key,
required this.controller,
required this.radialButtons,
this.centerSizeOfButton = 0.5})
:
// translation animation
translation = Tween<double>(
begin: 0.0,
end: 70.0,
).animate(
CurvedAnimation(parent: controller, curve: Curves.elasticOut),
),
// scaling animation
scale = Tween<double>(
begin: centerSizeOfButton * 2,
end: 0.0,
).animate(
CurvedAnimation(parent: controller, curve: Curves.fastOutSlowIn),
),
// rotation animation
rotation = Tween<double>(
begin: 0.0,
end: 315.0,
).animate(
CurvedAnimation(
parent: controller,
curve: const Interval(
0.0,
0.3,
curve: Curves.decelerate,
),
),
),
super(key: key);
final AnimationController controller;
final Animation<double> rotation;
final Animation<double> translation;
final Animation<double> scale;
final List<RadialButton> radialButtons;
final double centerSizeOfButton;
@override
Widget build(BuildContext context) {
// will provide angle for further calculation
double generatedAngle = 270;
double iconAngle;
return AnimatedBuilder(
animation: controller,
builder: (context, widget) {
return Transform.rotate(
angle: radians(rotation.value),
child: Stack(alignment: Alignment.center, children: [
// generates list of buttons
...radialButtons.map((index) {
iconAngle = radialButtons.indexOf(index) * generatedAngle;
return _buildButton(iconAngle,
color: index.buttonColor,
icon: index.icon,
onPress: index.onPress);
}),
// secondary button animation
Transform.scale(
scale: scale.value - (centerSizeOfButton * 2 - 0.25),
child: FloatingActionButton(
onPressed: close,
backgroundColor: Colors.red,
child: const Icon(FontAwesomeIcons.plus)),
),
// primary button animation
Transform.scale(
scale: scale.value,
child: FloatingActionButton(
onPressed: open,
backgroundColor: Colors.white,
child: const Icon(
FontAwesomeIcons.plus,
color: Colors.black54,
),
),
)
]));
});
}
// will show child buttons
void open() {
controller.forward();
}
// will hide child buttons
void close() {
controller.reverse();
}
// build custom child buttons
Widget _buildButton(double angle,
{Function? onPress, Color? color, Icon? icon}) {
final double rad = radians(angle);
return Transform(
transform: Matrix4.identity()
..translate(
(translation.value) * cos(rad), (translation.value) * sin(rad)),
child: FloatingActionButton(
backgroundColor: color,
onPressed: () {
onPress!();
close();
},
elevation: 0,
child: icon));
}
}
class RadialButton {
// background colour of the button surrounding the icon
final Color buttonColor;
// sets icon of the child buttons
final Icon icon;
// onPress function of the child buttons
final Function onPress;
// constructor for child buttons
RadialButton(
{this.buttonColor = Colors.orange,
required this.icon,
required this.onPress});
}