This commit is contained in:
2025-01-24 19:00:27 +05:30
parent 26aaa8c4e8
commit d9ddf69827
47 changed files with 3291 additions and 108 deletions

View File

@@ -4,6 +4,8 @@ class APPASSETS {
//SVG
static const String back = "$svgBaseUrl/back.svg";
static const String removeIcon = "$svgBaseUrl/remove.svg";
static const String addIcon = '$svgBaseUrl/add.svg';
//PNG
static const String splashImagePNG = "$pngBaseUrl/splash.png";
static const String onBoardMan = "$pngBaseUrl/onboard_man.png";

View File

@@ -12,4 +12,5 @@ class APPCOLOR {
static Color gery48514D = HexColor('48514D');
static Color lightGreyF4F5F5 = HexColor('F7FDF7');
static Color bgGrey = Colors.grey.withOpacity(0.0500);
static const Color gray = const Color(0xFFB3B3B3);
}

View File

@@ -13,6 +13,9 @@ class APPSTRING {
static const String firstNameHint = "First Name";
static const String lastNameHint = "last Name";
static const String emailHint = "Email-ID";
static const String addressHint = "Address";
//button
static const String verifyButton = "Verify";
static const String continueBtn = "Continue";

View File

@@ -212,7 +212,8 @@ extension ContextExtension on BuildContext {
}
/// show global loader
void showLoader({bool show = true}) {
void showLoader({bool show = true})
{
if (mounted) {
if (show) {
loaderOverlay.show();