Skip to content

Commit ec71e78

Browse files
committed
Fix design issue
1 parent 21a4c4f commit ec71e78

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

lib/pages/send_money.dart

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class _SendMoneyState extends State<SendMoney> {
4545
@override
4646
Widget build(BuildContext context) {
4747
return Scaffold(
48+
backgroundColor: Colors.white,
4849
appBar: AppBar(
4950
backgroundColor: Colors.transparent,
5051
elevation: 0,
@@ -60,7 +61,7 @@ class _SendMoneyState extends State<SendMoney> {
6061
SizedBox(height: 50,),
6162
FadeInDown(
6263
from: 100,
63-
duration: Duration(milliseconds: 1000),
64+
duration: Duration(milliseconds: 500),
6465
child: Container(
6566
width: 130,
6667
height: 130,
@@ -78,19 +79,19 @@ class _SendMoneyState extends State<SendMoney> {
7879
FadeInUp(
7980
from: 60,
8081
delay: Duration(milliseconds: 500),
81-
duration: Duration(milliseconds: 1000),
82+
duration: Duration(milliseconds: 500),
8283
child: Text("Send Money To", style: TextStyle(color: Colors.grey),)),
8384
SizedBox(height: 10,),
8485
FadeInUp(
8586
from: 30,
8687
delay: Duration(milliseconds: 800),
87-
duration: Duration(milliseconds: 1000),
88+
duration: Duration(milliseconds: 500),
8889
child: Text(widget.name, style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),)),
8990
SizedBox(height: 20,),
9091
FadeInUp(
9192
from: 40,
9293
delay: Duration(milliseconds: 800),
93-
duration: Duration(milliseconds: 1000),
94+
duration: Duration(milliseconds: 500),
9495
child: Padding(
9596
padding: const EdgeInsets.symmetric(horizontal: 50.0),
9697
child: TextField(
@@ -136,7 +137,7 @@ class _SendMoneyState extends State<SendMoney> {
136137
FadeInUp(
137138
from: 60,
138139
delay: Duration(milliseconds: 800),
139-
duration: Duration(milliseconds: 1000),
140+
duration: Duration(milliseconds: 500),
140141
child: AnimatedContainer(
141142
margin: EdgeInsets.symmetric(horizontal: 30),
142143
duration: Duration(milliseconds: 500),
@@ -166,7 +167,7 @@ class _SendMoneyState extends State<SendMoney> {
166167
FadeInUp(
167168
from: 60,
168169
delay: Duration(milliseconds: 800),
169-
duration: Duration(milliseconds: 1000),
170+
duration: Duration(milliseconds: 500),
170171
child: Container(
171172
height: 50,
172173
padding: EdgeInsets.symmetric(horizontal: 30),
@@ -177,7 +178,7 @@ class _SendMoneyState extends State<SendMoney> {
177178
return FadeInRight(
178179
from: 100,
179180
delay: Duration(milliseconds: index * 500),
180-
duration: Duration(milliseconds: 1000),
181+
duration: Duration(milliseconds: 500),
181182
child: BouncingWidget(
182183
duration: Duration(milliseconds: 100),
183184
scaleFactor: 1.5,
@@ -206,7 +207,7 @@ class _SendMoneyState extends State<SendMoney> {
206207
),
207208
SizedBox(height: 50,),
208209
FadeInUp(
209-
duration: Duration(milliseconds: 1000),
210+
duration: Duration(milliseconds: 500),
210211
child: Padding(
211212
padding: const EdgeInsets.symmetric(horizontal: 50.0),
212213
child: Material(

0 commit comments

Comments
 (0)