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.
This commit is contained in:
amirrezaghabeli
2025-11-23 10:47:51 +03:30
parent ae8501dc36
commit a5b01ffac4
7 changed files with 74 additions and 45 deletions
@@ -18,4 +18,6 @@ class ProfileStrings {
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';
}