Skip to content

Commit fafa5ff

Browse files
author
Echonox
authored
Merge pull request #4 from kalismeras61/master
Page 11 added with full functioanility and icon changed added widgets
2 parents 2d64739 + 018b665 commit fafa5ff

17 files changed

+1208
-116
lines changed
245 KB
Loading
358 KB
Loading

lib/const/fonts_const.dart

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/const/gradient_const.dart

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ import 'package:flutter/material.dart';
22
import 'color_const.dart';
33

44
const LinearGradient SIGNUP_BACKGROUND = LinearGradient(
5-
begin: FractionalOffset(0.0, 0.4), end: FractionalOffset(0.9, 0.7),
6-
// Add one stop for each color. Stops should increase from 0 to 1
7-
stops: [0.1, 0.9], colors: [YELLOW, BLUE]);
5+
begin: FractionalOffset(0.0, 0.4), end: FractionalOffset(0.9, 0.7),
6+
// Add one stop for each color. Stops should increase from 0 to 1
7+
stops: [0.1, 0.9], colors: [YELLOW, BLUE],
8+
);
89

910
const LinearGradient SIGNUP_CARD_BACKGROUND = LinearGradient(
1011
tileMode: TileMode.clamp,

lib/const/images_const.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,6 @@ class MainImagePath {
3939
class SignUpImagePath {
4040
static const String image_path = "assets/images/signup";
4141
static const String SignUpLogo = "$image_path/logo_signup.png";
42+
static const String SignUpPage_11_Bg = "$image_path/signup_page_11_bg.png";
43+
static const String SignUpPage_6_Bg = "$image_path/signup_page_6_bg.png";
4244
}

lib/const/page_str_const.dart

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ const SIGN_UP_PAGES = [
99
"Sign up page 02",
1010
"Sign up page 03",
1111
"Sign up page 04",
12+
"Sign up page 05",
13+
"Sign up page 06",
14+
"Sign up page 07",
15+
"Sign up page 08",
16+
"Sign up page 09",
17+
"Sign up page 10",
18+
"Sign up page 11",
1219

1320
/// fixme you could add by your group one name fit one page.
1421
];

lib/main.dart

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import 'package:flutter/material.dart';
22
import 'package:flutter_ui_nice/page/page_const.dart';
33
import 'package:flutter_ui_nice/page/signup/SignPageFour.dart';
4+
import 'package:flutter_ui_nice/page/signup/SignPageEleven.dart';
5+
import 'package:flutter_ui_nice/page/signup/SignPageSix.dart';
46
import 'const/string_const.dart';
57
import 'const/color_const.dart';
68
import 'const/page_str_const.dart';
@@ -26,6 +28,13 @@ class MyApp extends StatelessWidget {
2628
SIGN_UP_PAGES[1]: (context) => SignPageTwo(),
2729
//SIGN_UP_PAGES[2]: (context) => SignPageThird(),
2830
SIGN_UP_PAGES[3]: (context) => SignPageFour(),
31+
SIGN_UP_PAGES[4]: (context) => SignPageFour(),
32+
SIGN_UP_PAGES[5]: (context) => SignPageSix(),
33+
SIGN_UP_PAGES[6]: (context) => SignPageFour(),
34+
SIGN_UP_PAGES[7]: (context) => SignPageFour(),
35+
SIGN_UP_PAGES[8]: (context) => SignPageFour(),
36+
SIGN_UP_PAGES[9]: (context) => SignPageFour(),
37+
SIGN_UP_PAGES[10]: (context) => SignPageEleven(),
2938
//FIXME there are other pages to jump with 'page_str_const.dart',there should be make by manager
3039
},
3140
onUnknownRoute: (setting) =>

lib/page/page_const.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ export "empty_page.dart";
88
export 'signup/SignPageOne.dart';
99
export 'signup/SignPageTwo.dart';
1010
export 'signup/SignPageFour.dart';
11+
export 'signup/SignPageEleven.dart';

0 commit comments

Comments
 (0)