athrainsky 2 years ago
parent
commit
6a75117bf6
3 changed files with 3 additions and 40 deletions
  1. 3 1
      lib/list.dart
  2. 0 1
      lib/login.dart
  3. 0 38
      lib/main.dart

+ 3 - 1
lib/list.dart

@@ -7,6 +7,8 @@ class ListPage extends StatelessWidget {
   Widget build(BuildContext context) {
     return Scaffold(
         backgroundColor: Theme.of(context).colorScheme.primaryContainer,
-        body: Column());
+        body: Column(
+          children: [Text('heh')],
+        ));
   }
 }

+ 0 - 1
lib/login.dart

@@ -92,7 +92,6 @@ class _LangState extends State<Lang> {
                   borderRadius: BorderRadius.only(
                       topLeft: Radius.circular(20),
                       bottomLeft: Radius.circular(20)),
-                  //side: BorderSide(color: Colors.red),
                 ))),
             child: Text('EN'),
           ),

+ 0 - 38
lib/main.dart

@@ -35,7 +35,6 @@ class MyApp extends StatelessWidget {
         colorScheme:
             ColorScheme.fromSeed(seedColor: Color.fromARGB(255, 0, 255, 255)),
       ),
-      // home: MyHomePage(),
       routerConfig: _router,
     );
   }
@@ -111,7 +110,6 @@ class _LangState extends State<Lang> {
                   borderRadius: BorderRadius.only(
                       topLeft: Radius.circular(20),
                       bottomLeft: Radius.circular(20)),
-                  //side: BorderSide(color: Colors.red),
                 ))),
             child: Text('EN'),
           ),
@@ -137,26 +135,6 @@ class _LangState extends State<Lang> {
   }
 }
 
-// class Judul extends StatelessWidget {
-//   const Judul({
-//     Key? key,
-//   }) : super(key: key);
-
-//   @override
-//   Widget build(BuildContext context) {
-//     var theme = Theme.of(context);
-//     var style = theme.textTheme.displayMedium!.copyWith(
-//       color: Colors.orange,
-//       );
-
-//     return Column(
-//       children: [
-//         Text('TelNow', style: style),
-//       ],
-//     );
-//   }
-// }
-
 class Pindai extends StatelessWidget {
   const Pindai({
     Key? key,
@@ -180,19 +158,3 @@ class Pindai extends StatelessWidget {
     );
   }
 }
-
-// class Footer extends StatelessWidget {
-//   const Footer({
-//     Key? key,
-//   }) : super(key: key);
-
-//   @override
-//   Widget build(BuildContext context) {
-//     return Column(
-//       children: [
-//         Text('Kebijakan Privasi'),
-//         Text('Versi 4.0.0.0'),
-//       ],
-//     );
-//   }
-// }