Skip to content

Commit 018b665

Browse files
committed
fix some problem
1 parent 05886e1 commit 018b665

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

lib/page/signup/SignPageSix.dart

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ class _SignPageSixState extends State<SignPageSix>
2424
void initState() {
2525
super.initState();
2626

27-
duration = new Duration(milliseconds: 600);
27+
duration = new Duration(milliseconds: 400);
2828

2929
_controller1 = new AnimationController(vsync: this, duration: duration);
3030
_controller2 = new AnimationController(
31-
vsync: this, duration: Duration(milliseconds: 300));
31+
vsync: this, duration: Duration(milliseconds: 200));
3232
_controller3 = new AnimationController(
3333
vsync: this, duration: Duration(microseconds: 0));
3434

@@ -276,7 +276,7 @@ class _SignPageSixState extends State<SignPageSix>
276276
),
277277
),
278278
Text(
279-
'Sing in',
279+
'Sign in',
280280
style: TextStyle(
281281
fontFamily: "Montserrat",
282282
fontWeight: FontWeight.w200,
@@ -289,6 +289,9 @@ class _SignPageSixState extends State<SignPageSix>
289289
fontWeight: FontWeight.w200,
290290
fontSize: 35),
291291
),
292+
SizedBox(
293+
height: 10,
294+
),
292295
emailTextFieldWidget(),
293296
SizedBox(
294297
height: 1.5,
@@ -428,9 +431,13 @@ class _SignPageSixState extends State<SignPageSix>
428431
color: Color(0xff35AA90), size: 10.0),
429432
),
430433
hintText: 'Email',
434+
labelStyle: TextStyle(
435+
fontWeight: FontWeight.w700,
436+
fontSize: 14,
437+
),
431438
hintStyle: TextStyle(
432-
fontSize: 12,
433-
fontWeight: FontWeight.w600,
439+
fontSize: 14,
440+
fontWeight: FontWeight.bold,
434441
),
435442
border: InputBorder.none,
436443
),
@@ -442,9 +449,13 @@ class _SignPageSixState extends State<SignPageSix>
442449
controller: _password,
443450
decoration: new InputDecoration(
444451
hintText: 'Password',
445-
hintStyle: TextStyle(
446-
fontSize: 12,
452+
labelStyle: TextStyle(
447453
fontWeight: FontWeight.w600,
454+
fontSize: 14,
455+
),
456+
hintStyle: TextStyle(
457+
fontSize: 14,
458+
fontWeight: FontWeight.bold,
448459
),
449460
border: InputBorder.none,
450461
),

0 commit comments

Comments
 (0)