main.dart 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. import 'package:flutter/material.dart';
  2. import 'package:go_router/go_router.dart';
  3. import 'package:namer_app/list.dart';
  4. import 'package:namer_app/login.dart';
  5. void main() {
  6. runApp(MyApp());
  7. }
  8. final _router = GoRouter(
  9. routes: [
  10. GoRoute(path: '/', builder: (context, state) => MyHomePage(), //),
  11. routes: [
  12. GoRoute(
  13. path: 'login',
  14. builder: (context, state) => LoginPage(),
  15. ),
  16. GoRoute(
  17. path: 'list',
  18. builder: (context, state) => ListPage(),
  19. ),
  20. ]),
  21. ],
  22. );
  23. class MyApp extends StatelessWidget {
  24. const MyApp({super.key});
  25. @override
  26. Widget build(BuildContext context) {
  27. return MaterialApp.router(
  28. title: 'TelNow Lat',
  29. theme: ThemeData(
  30. useMaterial3: true,
  31. colorScheme:
  32. ColorScheme.fromSeed(seedColor: Color.fromARGB(255, 0, 255, 255)),
  33. ),
  34. // home: MyHomePage(),
  35. routerConfig: _router,
  36. );
  37. }
  38. }
  39. class MyHomePage extends StatelessWidget {
  40. @override
  41. Widget build(BuildContext context) {
  42. return Scaffold(
  43. backgroundColor: Theme.of(context).colorScheme.primaryContainer,
  44. body: Column(
  45. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  46. children: [
  47. Lang(),
  48. Expanded(
  49. child: Center(
  50. child: Text(
  51. 'TelNow',
  52. style: TextStyle(color: Colors.orange, fontSize: 48),
  53. )),
  54. ),
  55. Padding(
  56. padding: const EdgeInsets.only(left: 120, right: 120),
  57. child: Text(
  58. 'Silakan pindai QR terlebih dulu untuk mulai menggunakan aplikasi.',
  59. softWrap: true,
  60. textAlign: TextAlign.center,
  61. ),
  62. ),
  63. Expanded(
  64. child: Center(child: Pindai()),
  65. ),
  66. Text('Kebijakan Privasi'),
  67. Text('Versi 4.0.0.0'),
  68. Container(
  69. color: Theme.of(context).colorScheme.primaryContainer,
  70. )
  71. ],
  72. ),
  73. );
  74. }
  75. }
  76. class Lang extends StatefulWidget {
  77. const Lang({
  78. Key? key,
  79. }) : super(key: key);
  80. @override
  81. State<Lang> createState() => _LangState();
  82. }
  83. class _LangState extends State<Lang> {
  84. var selectedIndex = 0;
  85. @override
  86. Widget build(BuildContext context) {
  87. return Padding(
  88. padding: const EdgeInsets.all(8.0),
  89. child: Row(
  90. children: [
  91. Expanded(child: Container()),
  92. ElevatedButton(
  93. onPressed: () {
  94. print('EN');
  95. },
  96. style: ButtonStyle(
  97. foregroundColor: MaterialStateProperty.all<Color>(Colors.white),
  98. backgroundColor:
  99. MaterialStateProperty.all<Color>(Colors.white70),
  100. shape: MaterialStateProperty.all<RoundedRectangleBorder>(
  101. RoundedRectangleBorder(
  102. borderRadius: BorderRadius.only(
  103. topLeft: Radius.circular(20),
  104. bottomLeft: Radius.circular(20)),
  105. //side: BorderSide(color: Colors.red),
  106. ))),
  107. child: Text('EN'),
  108. ),
  109. ElevatedButton(
  110. onPressed: () {
  111. print('ID');
  112. },
  113. style: ButtonStyle(
  114. foregroundColor:
  115. MaterialStateProperty.all<Color>(Colors.white),
  116. backgroundColor: MaterialStateProperty.all<Color>(Colors.red),
  117. shape: MaterialStateProperty.all<RoundedRectangleBorder>(
  118. RoundedRectangleBorder(
  119. borderRadius: BorderRadius.only(
  120. topRight: Radius.circular(20),
  121. bottomRight: Radius.circular(20)),
  122. side: BorderSide(color: Colors.red),
  123. ))),
  124. child: Text('ID'))
  125. ],
  126. ),
  127. );
  128. }
  129. }
  130. // class Judul extends StatelessWidget {
  131. // const Judul({
  132. // Key? key,
  133. // }) : super(key: key);
  134. // @override
  135. // Widget build(BuildContext context) {
  136. // var theme = Theme.of(context);
  137. // var style = theme.textTheme.displayMedium!.copyWith(
  138. // color: Colors.orange,
  139. // );
  140. // return Column(
  141. // children: [
  142. // Text('TelNow', style: style),
  143. // ],
  144. // );
  145. // }
  146. // }
  147. class Pindai extends StatelessWidget {
  148. const Pindai({
  149. Key? key,
  150. }) : super(key: key);
  151. @override
  152. Widget build(BuildContext context) {
  153. return Expanded(
  154. child: Center(
  155. child: ElevatedButton(
  156. onPressed: () => context.go('/login'),
  157. style: ButtonStyle(
  158. padding: MaterialStateProperty.all<EdgeInsets>(EdgeInsets.all(50)),
  159. foregroundColor: MaterialStateProperty.all<Color>(Colors.black),
  160. shape: MaterialStateProperty.all<RoundedRectangleBorder>(
  161. RoundedRectangleBorder(
  162. borderRadius: BorderRadius.circular(18.0),
  163. ))),
  164. child: Text('Pindai QR'),
  165. )),
  166. );
  167. }
  168. }
  169. // class Footer extends StatelessWidget {
  170. // const Footer({
  171. // Key? key,
  172. // }) : super(key: key);
  173. // @override
  174. // Widget build(BuildContext context) {
  175. // return Column(
  176. // children: [
  177. // Text('Kebijakan Privasi'),
  178. // Text('Versi 4.0.0.0'),
  179. // ],
  180. // );
  181. // }
  182. // }