Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/const/color_const.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ const YELLOW = Color(0xfffbed96);
const BLUE = Color(0xffabecd6);
const PURPLE = Color(0xffccc3fc);
const LIGHT_RED = Color(0xffffc2a1);
const RED = Color(0xffffb6b3);
const RED = Color(0xffffb1bb);
6 changes: 4 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import 'package:flutter/material.dart';
import 'package:flutter_ui_nice/page/page_const.dart';
import 'package:flutter_ui_nice/page/signup/SignPageEight.dart';
import 'package:flutter_ui_nice/page/signup/SignPageFive.dart';
import 'package:flutter_ui_nice/page/signup/SignPageFour.dart';
import 'package:flutter_ui_nice/page/signup/SignPageEleven.dart';
import 'package:flutter_ui_nice/page/signup/SignPageSeven.dart';
import 'package:flutter_ui_nice/page/signup/SignPageSix.dart';
import 'package:flutter_ui_nice/page/signup/SignPageNine.dart';
import 'package:flutter_ui_nice/page/signup/SingPageTen.dart';
Expand Down Expand Up @@ -31,9 +33,9 @@ class MyApp extends StatelessWidget {
SIGN_UP_PAGES[1]: (context) => SignPageTwo(),
//SIGN_UP_PAGES[2]: (context) => SignPageThird(),
SIGN_UP_PAGES[3]: (context) => SignPageFour(),
SIGN_UP_PAGES[4]: (context) => SignPageFour(),
SIGN_UP_PAGES[4]: (context) => SignPageFive(),
SIGN_UP_PAGES[5]: (context) => SignPageSix(),
SIGN_UP_PAGES[6]: (context) => SignPageFour(),
SIGN_UP_PAGES[6]: (context) => SignPageSeven(),
SIGN_UP_PAGES[7]: (context) => SignPageEight(),
SIGN_UP_PAGES[8]: (context) => SignPageNine(),
SIGN_UP_PAGES[9]: (context) => SignPageTeen(),
Expand Down
34 changes: 18 additions & 16 deletions lib/page/signup/SignPageEleven.dart
Original file line number Diff line number Diff line change
Expand Up @@ -143,23 +143,25 @@ class _SignPageElevenState extends State<SignPageEleven> {
),
Expanded(
flex: 2,
child: DropdownButton<String>(
isDense: true,
style: TextStyle(
fontSize: TEXT_NORMAL_SIZE,
color: Colors.black,
child: DropdownButtonHideUnderline(
child: DropdownButton<String>(
isDense: true,
style: TextStyle(
fontSize: TEXT_NORMAL_SIZE,
color: Colors.black,
),
isExpanded: true,
onChanged: changeDropDownLocationItem,
items: _locations.map((items) {
return DropdownMenuItem<String>(
value: items,
child: Text(
items,
),
);
}).toList(),
value: currentLocation,
),
isExpanded: true,
onChanged: changeDropDownLocationItem,
items: _locations.map((items) {
return DropdownMenuItem<String>(
value: items,
child: Text(
items,
),
);
}).toList(),
value: currentLocation,
),
),
],
Expand Down
Loading