File tree Expand file tree Collapse file tree 4 files changed +73
-0
lines changed Expand file tree Collapse file tree 4 files changed +73
-0
lines changed Original file line number Diff line number Diff line change
1
+ import 'package:flutter/material.dart' ;
2
+ import 'package:flutter_screenutil/flutter_screenutil.dart' ;
3
+ import 'package:google_fonts/google_fonts.dart' ;
4
+
5
+ class Page44 extends StatefulWidget {
6
+ const Page44 ({Key ? key}) : super (key: key);
7
+
8
+ @override
9
+ State <Page44 > createState () => _Page44State ();
10
+ }
11
+
12
+ class _Page44State extends State <Page44 > {
13
+ @override
14
+ Widget build (BuildContext context) {
15
+ return Scaffold (
16
+ body: SafeArea (
17
+ child: SingleChildScrollView (
18
+ child: Column (
19
+ children: [
20
+ SizedBox (
21
+ height: 86. h,
22
+ ),
23
+ Center (
24
+ child: RotatedBox (
25
+ quarterTurns: 3 ,
26
+ child: Row (
27
+ children: [
28
+ Text (
29
+ 'LOREM ' ,
30
+ style: GoogleFonts .roboto (
31
+ textStyle: TextStyle (
32
+ fontSize: 90. sp,
33
+ color: Colors .black,
34
+ fontWeight: FontWeight .w100,
35
+ ),
36
+ ),
37
+ ),
38
+ Text (
39
+ 'IPSUM ' ,
40
+ style: GoogleFonts .roboto (
41
+ textStyle: TextStyle (
42
+ fontSize: 90. sp,
43
+ color: Colors .black,
44
+ fontWeight: FontWeight .w400,
45
+ ),
46
+ ),
47
+ )
48
+ ],
49
+ ),
50
+ ),
51
+ ),
52
+ ],
53
+ ),
54
+ ),
55
+ ),
56
+ );
57
+ }
58
+ }
Original file line number Diff line number Diff line change @@ -247,6 +247,15 @@ class RootWidget extends StatelessWidget {
247
247
248
248
/// 41 - 60
249
249
250
+ PageButtonWidget (
251
+ page: 44 ,
252
+ onPressed: () {
253
+ GetIt .I
254
+ .get <NavigationService >()
255
+ .to (routeName: MobileRoutes .pg44);
256
+ },
257
+ ),
258
+
250
259
PageButtonWidget (
251
260
page: 51 ,
252
261
onPressed: () {
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ class MobileRoutes {
33
33
static const pg34 = "/34/" ;
34
34
35
35
/// 41 - 60
36
+ static const pg44 = "/44/" ;
36
37
static const pg51 = "/51/" ;
37
38
static const pg52 = "/52/" ;
38
39
}
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ import '../mobile_ui/27/page_27.dart';
30
30
import '../mobile_ui/32/page_32.dart' ;
31
31
import '../mobile_ui/33/page_33.dart' ;
32
32
import '../mobile_ui/34/page_34.dart' ;
33
+ import '../mobile_ui/44/page_44.dart' ;
33
34
import '../mobile_ui/51/page_51.dart' ;
34
35
import '../mobile_ui/52/page_52.dart' ;
35
36
import 'fade_route.dart' ;
@@ -158,6 +159,10 @@ var routes = (RouteSettings settings) {
158
159
);
159
160
160
161
/// Mobile 41 - 60
162
+ case MobileRoutes .pg44:
163
+ return FadeRoute (
164
+ page: const Page44 (),
165
+ );
161
166
case MobileRoutes .pg51:
162
167
return FadeRoute (
163
168
page: const Page51 (),
You can’t perform that action at this time.
0 commit comments