-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathanimated_button.dart
162 lines (159 loc) · 5.11 KB
/
animated_button.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
import 'package:flutter/material.dart';
import 'package:animated_button/animated_button.dart';
import 'second_page.dart';
class MyAnimatedButton extends StatelessWidget {
const MyAnimatedButton({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.deepPurple[100],
appBar: AppBar(title: const Text('Animated Button')),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
AnimatedButton(
color: Colors.blue,
onPressed: () {},
enabled: true,
shadowDegree: ShadowDegree.light,
child: const Text(
'Simple button',
style: TextStyle(
fontSize: 22,
color: Colors.white,
fontWeight: FontWeight.w500,
),
),
),
const SizedBox(height: 20),
AnimatedButton(
color: Colors.green,
onPressed: () {},
enabled: true,
shadowDegree: ShadowDegree.light,
duration: 400,
child: const Text(
'Slow animation',
style: TextStyle(
fontSize: 22,
color: Colors.white,
fontWeight: FontWeight.w500,
),
),
),
const SizedBox(height: 20),
AnimatedButton(
onPressed: () {
Navigator.of(context).push(
MaterialPageRoute(builder: (context) => const SecondPage()),
);
},
width: 300,
color: Colors.redAccent,
shadowDegree: ShadowDegree.dark,
enabled: true,
child: const Text(
'Navigate to another page',
style: TextStyle(
fontSize: 22,
color: Colors.white,
fontWeight: FontWeight.w500,
),
),
),
const SizedBox(height: 20),
AnimatedButton(
onPressed: () {
debugPrint(
'you won\'t see this message because button is disabled!');
},
color: Colors.green,
enabled: false,
child: const Text(
'I\'m disabled',
style: TextStyle(
fontSize: 22,
color: Colors.white,
fontWeight: FontWeight.w500,
),
),
),
const SizedBox(height: 20),
AnimatedButton(
onPressed: () {},
height: 40,
shadowDegree: ShadowDegree.dark,
color: Colors.indigo,
child: const Text(
'Custom height',
style: TextStyle(
fontSize: 16,
color: Colors.white,
fontWeight: FontWeight.w500,
),
),
),
const SizedBox(height: 20),
AnimatedButton(
onPressed: () {},
shadowDegree: ShadowDegree.light,
color: Colors.green,
child: const Padding(
padding: EdgeInsets.all(8.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.add_shopping_cart,
color: Colors.white,
),
SizedBox(width: 6),
Text(
'Add to Cart',
style: TextStyle(
fontSize: 22,
color: Colors.white,
fontWeight: FontWeight.w500,
),
),
],
),
),
),
const SizedBox(height: 20),
AnimatedButton(
onPressed: () {},
shadowDegree: ShadowDegree.light,
color: Colors.amber,
child: const Padding(
padding: EdgeInsets.all(8.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
'Loading...',
style: TextStyle(
fontSize: 22,
color: Colors.white,
fontWeight: FontWeight.w500,
),
),
SizedBox(width: 10),
SizedBox(
width: 30,
height: 30,
child: CircularProgressIndicator(
valueColor: AlwaysStoppedAnimation<Color>(Colors.white),
),
)
],
),
),
),
],
),
),
);
}
}