Files
tm_app/lib/core/constants/strings.dart
T
2025-08-02 14:44:48 +03:30

18 lines
608 B
Dart

class AppStrings {
// App Titles
static const String appName = 'My Awesome App';
static const String loginTitle = 'Welcome Back';
// Labels and Buttons
static const String loginButton = 'Sign In';
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.';
}