d01e028dc1
- Changed references from companyProfileData to profileData across multiple profile page views for consistency. - Updated UI elements to display user-specific information such as username, email, role, department, and position. - Modified the profile screen to fetch user profile data instead of company profile data. - Added new string constants for user-related fields in ProfileStrings.
22 lines
852 B
Dart
22 lines
852 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';
|
|
}
|