32 lines
1.1 KiB
Dart
32 lines
1.1 KiB
Dart
class APPSTRING {
|
|
//title
|
|
static const String enterYourMobileNumber = "Enter Your Mobile Number";
|
|
static const String whatYourPhoneNumber = "What's your phone number?";
|
|
static const String codeSentText =
|
|
"A code will be send to verify your phone number";
|
|
|
|
static const String enterVerificationCode = "Enter Verification Code";
|
|
static const String enterCode =
|
|
"Enter the 6-digit code sent to you at ********8902";
|
|
static const String pleaseEnterYourFullName = "Please Enter Your Full Name";
|
|
|
|
//hint
|
|
static const String phoneNumberHint = "Phone Number";
|
|
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";
|
|
static const String appName = "Customer App";
|
|
|
|
static String userName = "user_name";
|
|
static String userLastName = "user_name";
|
|
static String emailName = "user_email";
|
|
static String userProfile = "user_profile";
|
|
static String isToken = "isToken";
|
|
}
|