18 lines
751 B
Dart
18 lines
751 B
Dart
class AppText {
|
|
//Splash
|
|
static const String splashVersionText = "APP: v.";
|
|
static const String splashCopyrightText = '© 2024 Tanami';
|
|
|
|
//Welcome
|
|
static const String welcomeTitle1Text = "Tanami offers";
|
|
static const String welcomeTitle2Text = "Invest alongside";
|
|
static const String welcomeTitle3Text = "Start investing today ";
|
|
static const String weclomeDescription1Text =
|
|
"access to best-in-class, exclusive, global private investments";
|
|
static const String weclomeDescription2Text =
|
|
"experienced investment experts with a long-standing track record";
|
|
static const String weclomeDescription3Text = "with only SAR 1,000";
|
|
static const String loginText = "Login In";
|
|
static const String signUpText = "Sign Up";
|
|
}
|