mycart
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user