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/svg/bahrain_flag.svg";
|
|
static const String kuwaitFlag =
|
|
"assets/images/auth_screen/svg/kuwait_flag.svg";
|
|
static const String omanFlag = "assets/images/auth_screen/svg/oman_flag.svg";
|
|
static const String qatarFlag =
|
|
"assets/images/country_flag/svg/qatar_flag.svg";
|
|
static const String saudiArabiaflag =
|
|
"assets/images/auth_screen/svg/saudi_arabia_flag.svg";
|
|
static const String unitedArabEmiratesFlag =
|
|
"assets/images/auth_screen/svg/united_arab_emirates_flag.svg";
|
|
}
|