Skip to content
Snippets Groups Projects
Commit 8a3e93ba authored by Rakshitha Salian's avatar Rakshitha Salian
Browse files

Add string constants and routes

parent d2f0f52a
Branches
No related tags found
1 merge request!2Verify OTP screen- FE -ECAP1-24
const String message = "message";
const String name = "name";
///Verify otp texts
const String otpTitle = "otpTitle";
const String otpSubTitle = "otpSubTitle";
const String enterOtp = "enterOtp";
const String resendOtp = "resendOtp";
const String verify = "verify";
const String back = "back";
const String verifySuccessTitle = "verifySuccessTitle";
const String verifySuccessSubTitle = "verifySuccessSubTitle";
const String seconds = "seconds";
\ No newline at end of file
......@@ -12,12 +12,34 @@ class Languages extends Translations {
/// English language constants
Map<String, String> englishConstants = {
message: "What is the project name?",
name: "Exide CRR"
name: "Exide CRR",
///Verify otp screen
otpTitle:"Verify OTP",
otpSubTitle:"Please verify the OTP which have been sent your registered mobile number.",
enterOtp:"Enter OTP",
resendOtp: "Resend OTP in ",
seconds: "seconds.",
verify: "Verify",
back: "Back",
verifySuccessTitle:"Verification Successful",
verifySuccessSubTitle:"You have verified your OTP successfully."
};
/// Hindi language constants
Map<String, String> hindiConstants = {
message: "प्रोजेक्ट का नाम क्या है?",
name: "एक्साइड सीआरआर"
name: "एक्साइड सीआरआर",
///Verify otp screen
otpTitle:"ओटीपी सत्यापित करें",
otpSubTitle:"कृपया उस ओटीपी को सत्यापित करें जो आपके पंजीकृत मोबाइल नंबर पर भेजा गया है।",
enterOtp:"ओटीपी दर्ज करें",
resendOtp:"ओटीपी दोबारा भेजें",
seconds:"सेकंड में ",
verify: "सत्यापित करें",
back: "पीछे",
verifySuccessTitle:"सत्यापन सफल",
verifySuccessSubTitle:"आपने अपना ओटीपी सफलतापूर्वक सत्यापित कर लिया है।"
};
}
\ No newline at end of file
......@@ -33,7 +33,8 @@ class AppColor {
static const textFieldHintColor = Color(0xff9B9B9B);
static const primarySecColor = Color(0xFF3A88F4);
static Color redLight = const Color(0xffFF1717);
static const inActiveButtonColor = Color(0xff808080);
static const inActiveButtonColor = Color(0xffF9BBBF);
static const slateGray = Color(0xff454A4F);
static const MaterialColor primaryColorSwatch =
MaterialColor(primaryColorHexValue, <int, Color>{
......
......@@ -4,5 +4,6 @@ class RoutesName {
static const String splashScreen = "/";
static const String loginScreen = "/login";
static const String homeScreen = "/home";
static const String verifyOtp = "/verifyOtp";
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment