e6b4720dcd
- Changed the iOS deployment target from 12.0 to 13.0 in Podfile and project settings. - Updated AppDelegate to support implicit Flutter engine initialization. - Modified Info.plist to include scene configuration for multiple scenes. - Enhanced CompletionOfDocumentsRouteData to accept a tenderId parameter. - Implemented tender submission functionality in TenderDetailViewModel and updated UI components to reflect loading states and success/error messages. - Added new strings for submission success and error notifications.
28 lines
1.1 KiB
Dart
28 lines
1.1 KiB
Dart
class ProfileStrings {
|
|
ProfileStrings._();
|
|
|
|
static const String profile = 'Profile';
|
|
static const String profileTitle = 'Profile';
|
|
static const String settings = 'Settings';
|
|
static const String appTheme = 'App Theme';
|
|
static const String companyName = 'Company Name';
|
|
static const String nationalId = 'National ID';
|
|
static const String registrationNumber = 'Registration No.';
|
|
static const String businessType = 'Business Type';
|
|
static const String founded = 'Founded';
|
|
static const String logout = 'Log out';
|
|
static const String contracts = 'Contracts';
|
|
static const String notifications = 'Notifications';
|
|
static const String username = 'User Name';
|
|
static const String email = 'email';
|
|
static const String role = 'role';
|
|
static const String department = 'department';
|
|
static const String position = 'position';
|
|
static const String phone = 'phone';
|
|
static const String fullname = 'full name';
|
|
static const String mainDataTab = 'Main Data';
|
|
static const String membersTab = 'Members';
|
|
static const String subjectTab = 'Subject';
|
|
static const String appVersion = 'Version 1.0.7';
|
|
}
|