step 7 : proses login dan refactor struktur folder

This commit is contained in:
sindhu
2025-02-15 17:17:19 +07:00
parent c3d906653a
commit 823f1aa525
13 changed files with 471 additions and 80 deletions

View File

@@ -13,12 +13,17 @@ class Constant {
static double designWidthPhone = 390;
// color theme
static Color inputanGrey = const Color(0xff637381);
static Color bgButton = const Color(0xFF0098DA);
static Color bgRed = const Color(0xffFF4842).withOpacity(0.08);
static Color bgGrey = const Color(0xffF9F9F9);
static Color bgBlue = Colors.blue;
static Color textTrueBlack = const Color(0xff000000);
static Color textBlack = const Color(0xff212B36);
static Color textLightGrey = const Color(0xff919EAB);
static Color textOrange = const Color(0xffF15A29);
static Color textDarkGrey = const Color(0xff637381);
static Color bgAddressPresensi = const Color.fromRGBO(241, 90, 41, 0.08);
static Color textWhite = Color(0xffFDFDFD);
static Color textRed = Color(0xffFF4842);
// background upload file
@@ -67,8 +72,4 @@ class Constant {
fontWeight: FontWeight.w500,
);
}
static Color inputanGrey = const Color(0xff637381);
static Color bgButton = const Color(0xFF0098DA);
static Color bgRed = const Color(0xffFF4842).withOpacity(0.08);
}

View File

@@ -1,8 +1,8 @@
import 'package:flutter/material.dart';
import 'package:scanktpflutter/screen/home_screen.dart';
import 'package:scanktpflutter/screen/home/home_screen.dart';
import '../screen/login_screen.dart';
import '../screen/splash_screen.dart';
import '../screen/login/login_screen.dart';
import '../screen/splash/splash_screen.dart';
const splashRoute = "/splashRoute";
const loginRoute = "/loginRoute";