39 lines
1.5 KiB
Dart
39 lines
1.5 KiB
Dart
class AppImages {
|
|
//Splash
|
|
static const String splashBg =
|
|
"assets/images/welcome_screen/svg/Splash_BG.svg";
|
|
static const String splashLogo =
|
|
"assets/images/welcome_screen/svg/Tanami_Capital_Splash_Logo.svg";
|
|
|
|
//Welcome
|
|
static const String weclomeLogo =
|
|
"assets/images/welcome_screen/svg/Tanami_Capital_Logo.svg";
|
|
static const String firstWelcome =
|
|
"assets/images/welcome_screen/png/First_Onboarding.png";
|
|
static const String secondWelcome =
|
|
"assets/images/welcome_screen/png/Second_Onboarding.png";
|
|
static const String thirdWelcome =
|
|
"assets/images/welcome_screen/png/Third_Onboarding.png";
|
|
|
|
//Auth
|
|
static const String forwardArrow =
|
|
"assets/images/auth_screen/svg/right_arrow.svg";
|
|
static const String hidePassword =
|
|
"assets/images/auth_screen/svg/hide_password.svg";
|
|
static const String showPassword =
|
|
"assets/images/auth_screen/svg/show_password.svg";
|
|
|
|
//Country Flag
|
|
static const String bahrainFlag =
|
|
"assets/images/country_flag/png/bahrain_flag.png";
|
|
static const String kuwaitFlag =
|
|
"assets/images/country_flag/png/kuwait_flag.png";
|
|
static const String omanFlag = "assets/images/country_flag/png/oman_flag.png";
|
|
static const String qatarFlag =
|
|
"assets/images/country_flag/png/qatar_flag.png";
|
|
static const String saudiArabiaflag =
|
|
"assets/images/country_flag/png/saudi_arabia_flag.png";
|
|
static const String unitedArabEmiratesFlag =
|
|
"assets/images/country_flag/png/uae_flag.png";
|
|
}
|