25-2/24/1

This commit is contained in:
Hamza-Ayed
2025-02-24 23:38:01 +03:00
parent 5f53461b34
commit d41314cfed
64 changed files with 1180 additions and 494 deletions

View File

@@ -73,34 +73,41 @@ class ProfileCaptain extends StatelessWidget {
driverId:
controller.captainProfileData['driverID'] ??
'',
name: encryptionHelper.decryptData((controller
.captainProfileData['first_name']) ??
'') +
name: EncryptionHelper.instance.decryptData(
(controller.captainProfileData[
'first_name']) ??
'') +
' ' +
encryptionHelper.decryptData((controller
.captainProfileData['last_name']) ??
''),
phoneNumber: encryptionHelper.decryptData(
controller.captainProfileData['phone']) ??
EncryptionHelper.instance.decryptData(
(controller.captainProfileData[
'last_name']) ??
''),
phoneNumber: EncryptionHelper.instance
.decryptData(controller
.captainProfileData['phone']) ??
'',
email: encryptionHelper.decryptData(
email: EncryptionHelper.instance.decryptData(
controller.captainProfileData['email']) ??
'',
birthdate: encryptionHelper.decryptData(controller
.captainProfileData['birthdate']) ??
birthdate: EncryptionHelper.instance.decryptData(
controller
.captainProfileData['birthdate']) ??
'',
gender: encryptionHelper.decryptData(controller
.captainProfileData['gender']) ??
gender: EncryptionHelper.instance.decryptData(
controller
.captainProfileData['gender']) ??
'',
education: encryptionHelper.decryptData(controller
.captainProfileData['education']) ??
education: EncryptionHelper.instance.decryptData(
controller
.captainProfileData['education']) ??
'',
carMake:
controller.captainProfileData['make'] ?? '',
carModel:
controller.captainProfileData['model'] ?? '',
carPlate: encryptionHelper.decryptData(controller
.captainProfileData['car_plate']) ??
carPlate: EncryptionHelper.instance.decryptData(
controller
.captainProfileData['car_plate']) ??
'',
carColor:
controller.captainProfileData['color'] ?? '',