39 lines
1.3 KiB
Dart
39 lines
1.3 KiB
Dart
class AppStrings {
|
|
AppStrings._();
|
|
// App Titles
|
|
static const String appName = 'My Awesome App';
|
|
static const String loginTitle = 'Welcome Back';
|
|
|
|
// Labels and Buttons
|
|
static const String signupButton = 'Create Account';
|
|
static const String forgotPassword = 'Forgot Password?';
|
|
static const String emailHint = 'Email address';
|
|
static const String passwordHint = 'Password';
|
|
|
|
// Error Messages
|
|
static const String loginFailed =
|
|
'Login failed. Please check your credentials.';
|
|
static const String networkError = 'Network error. Please try again.';
|
|
|
|
//Login
|
|
static const signInTitle = 'Sign In';
|
|
static const signInSubtitle = 'Enter valid username & password to continue';
|
|
static const usernameLabel = 'User Name';
|
|
static const passwordLabel = 'Password';
|
|
static const loginButton = 'Login';
|
|
|
|
//Home
|
|
static const String home = 'Home';
|
|
static const String partnership = 'Partnership';
|
|
static const String selfApply = 'Self-apply';
|
|
static const String contracting = 'Contracting';
|
|
static const String tenderSubmitting = 'Tender submitting';
|
|
static const String approvedTenders = 'Approved tenders';
|
|
static const String tenderValue = 'Tender Value';
|
|
static const String thunderStatus = 'Thunder status';
|
|
static const String yourTenders = 'Your tenders';
|
|
|
|
//Tenders
|
|
static const String tendersTitle = 'Tenders';
|
|
}
|