Skip to content

Commit 8a9d55e

Browse files
author
Echonox
authored
Merge pull request #7 from kalismeras61/master
Sign Page 5 Complated.
2 parents dedf48b + cd77eba commit 8a9d55e

File tree

6 files changed

+848
-26
lines changed

6 files changed

+848
-26
lines changed

lib/const/color_const.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ const YELLOW = Color(0xfffbed96);
1212
const BLUE = Color(0xffabecd6);
1313
const PURPLE = Color(0xffccc3fc);
1414
const LIGHT_RED = Color(0xffffc2a1);
15-
const RED = Color(0xffffb6b3);
15+
const RED = Color(0xffffb1bb);

lib/main.dart

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import 'package:flutter/material.dart';
22
import 'package:flutter_ui_nice/page/page_const.dart';
33
import 'package:flutter_ui_nice/page/signup/SignPageEight.dart';
4+
import 'package:flutter_ui_nice/page/signup/SignPageFive.dart';
45
import 'package:flutter_ui_nice/page/signup/SignPageFour.dart';
56
import 'package:flutter_ui_nice/page/signup/SignPageEleven.dart';
7+
import 'package:flutter_ui_nice/page/signup/SignPageSeven.dart';
68
import 'package:flutter_ui_nice/page/signup/SignPageSix.dart';
79
import 'package:flutter_ui_nice/page/signup/SignPageNine.dart';
810
import 'package:flutter_ui_nice/page/signup/SingPageTen.dart';
@@ -31,9 +33,9 @@ class MyApp extends StatelessWidget {
3133
SIGN_UP_PAGES[1]: (context) => SignPageTwo(),
3234
//SIGN_UP_PAGES[2]: (context) => SignPageThird(),
3335
SIGN_UP_PAGES[3]: (context) => SignPageFour(),
34-
SIGN_UP_PAGES[4]: (context) => SignPageFour(),
36+
SIGN_UP_PAGES[4]: (context) => SignPageFive(),
3537
SIGN_UP_PAGES[5]: (context) => SignPageSix(),
36-
SIGN_UP_PAGES[6]: (context) => SignPageFour(),
38+
SIGN_UP_PAGES[6]: (context) => SignPageSeven(),
3739
SIGN_UP_PAGES[7]: (context) => SignPageEight(),
3840
SIGN_UP_PAGES[8]: (context) => SignPageNine(),
3941
SIGN_UP_PAGES[9]: (context) => SignPageTeen(),

lib/page/signup/SignPageEleven.dart

+18-16
Original file line numberDiff line numberDiff line change
@@ -143,23 +143,25 @@ class _SignPageElevenState extends State<SignPageEleven> {
143143
),
144144
Expanded(
145145
flex: 2,
146-
child: DropdownButton<String>(
147-
isDense: true,
148-
style: TextStyle(
149-
fontSize: TEXT_NORMAL_SIZE,
150-
color: Colors.black,
146+
child: DropdownButtonHideUnderline(
147+
child: DropdownButton<String>(
148+
isDense: true,
149+
style: TextStyle(
150+
fontSize: TEXT_NORMAL_SIZE,
151+
color: Colors.black,
152+
),
153+
isExpanded: true,
154+
onChanged: changeDropDownLocationItem,
155+
items: _locations.map((items) {
156+
return DropdownMenuItem<String>(
157+
value: items,
158+
child: Text(
159+
items,
160+
),
161+
);
162+
}).toList(),
163+
value: currentLocation,
151164
),
152-
isExpanded: true,
153-
onChanged: changeDropDownLocationItem,
154-
items: _locations.map((items) {
155-
return DropdownMenuItem<String>(
156-
value: items,
157-
child: Text(
158-
items,
159-
),
160-
);
161-
}).toList(),
162-
value: currentLocation,
163165
),
164166
),
165167
],

0 commit comments

Comments
 (0)