Files
tm_app/lib/views/profile/strings/profile_strings.dart
T
amirrezaghabeli a5b01ffac4 Update ProfileData model to include companies and enhance profile UI
- Added a new field for companies in the ProfileData model to store associated company information.
- Updated JSON serialization methods to handle the new companies field.
- Modified profile page views to display the user's full name and company name, replacing previous role and department fields for improved clarity.
- Introduced new string constants for full name and phone in ProfileStrings.
2025-11-23 10:47:51 +03:30

24 lines
937 B
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';
}