@@ -45,6 +45,7 @@ class _SendMoneyState extends State<SendMoney> {
45
45
@override
46
46
Widget build (BuildContext context) {
47
47
return Scaffold (
48
+ backgroundColor: Colors .white,
48
49
appBar: AppBar (
49
50
backgroundColor: Colors .transparent,
50
51
elevation: 0 ,
@@ -60,7 +61,7 @@ class _SendMoneyState extends State<SendMoney> {
60
61
SizedBox (height: 50 ,),
61
62
FadeInDown (
62
63
from: 100 ,
63
- duration: Duration (milliseconds: 1000 ),
64
+ duration: Duration (milliseconds: 500 ),
64
65
child: Container (
65
66
width: 130 ,
66
67
height: 130 ,
@@ -78,19 +79,19 @@ class _SendMoneyState extends State<SendMoney> {
78
79
FadeInUp (
79
80
from: 60 ,
80
81
delay: Duration (milliseconds: 500 ),
81
- duration: Duration (milliseconds: 1000 ),
82
+ duration: Duration (milliseconds: 500 ),
82
83
child: Text ("Send Money To" , style: TextStyle (color: Colors .grey),)),
83
84
SizedBox (height: 10 ,),
84
85
FadeInUp (
85
86
from: 30 ,
86
87
delay: Duration (milliseconds: 800 ),
87
- duration: Duration (milliseconds: 1000 ),
88
+ duration: Duration (milliseconds: 500 ),
88
89
child: Text (widget.name, style: TextStyle (fontSize: 24 , fontWeight: FontWeight .bold),)),
89
90
SizedBox (height: 20 ,),
90
91
FadeInUp (
91
92
from: 40 ,
92
93
delay: Duration (milliseconds: 800 ),
93
- duration: Duration (milliseconds: 1000 ),
94
+ duration: Duration (milliseconds: 500 ),
94
95
child: Padding (
95
96
padding: const EdgeInsets .symmetric (horizontal: 50.0 ),
96
97
child: TextField (
@@ -136,7 +137,7 @@ class _SendMoneyState extends State<SendMoney> {
136
137
FadeInUp (
137
138
from: 60 ,
138
139
delay: Duration (milliseconds: 800 ),
139
- duration: Duration (milliseconds: 1000 ),
140
+ duration: Duration (milliseconds: 500 ),
140
141
child: AnimatedContainer (
141
142
margin: EdgeInsets .symmetric (horizontal: 30 ),
142
143
duration: Duration (milliseconds: 500 ),
@@ -166,7 +167,7 @@ class _SendMoneyState extends State<SendMoney> {
166
167
FadeInUp (
167
168
from: 60 ,
168
169
delay: Duration (milliseconds: 800 ),
169
- duration: Duration (milliseconds: 1000 ),
170
+ duration: Duration (milliseconds: 500 ),
170
171
child: Container (
171
172
height: 50 ,
172
173
padding: EdgeInsets .symmetric (horizontal: 30 ),
@@ -177,7 +178,7 @@ class _SendMoneyState extends State<SendMoney> {
177
178
return FadeInRight (
178
179
from: 100 ,
179
180
delay: Duration (milliseconds: index * 500 ),
180
- duration: Duration (milliseconds: 1000 ),
181
+ duration: Duration (milliseconds: 500 ),
181
182
child: BouncingWidget (
182
183
duration: Duration (milliseconds: 100 ),
183
184
scaleFactor: 1.5 ,
@@ -206,7 +207,7 @@ class _SendMoneyState extends State<SendMoney> {
206
207
),
207
208
SizedBox (height: 50 ,),
208
209
FadeInUp (
209
- duration: Duration (milliseconds: 1000 ),
210
+ duration: Duration (milliseconds: 500 ),
210
211
child: Padding (
211
212
padding: const EdgeInsets .symmetric (horizontal: 50.0 ),
212
213
child: Material (
0 commit comments