Update: 2026-06-26 17:29:23

This commit is contained in:
Hamza-Ayed
2026-06-26 17:29:23 +03:00
parent a323da29aa
commit 9ded734e38
139 changed files with 1815 additions and 2676 deletions

View File

@@ -187,7 +187,7 @@ class AddStaffPage extends StatelessWidget {
border: Border.all(color: Colors.white.withOpacity(0.05)),
),
child: DropdownButtonFormField<String>(
value: value,
initialValue: value,
dropdownColor: fillColor,
style: const TextStyle(color: Colors.white),
decoration: InputDecoration(

View File

@@ -33,7 +33,7 @@ class _PendingAdminsPageState extends State<PendingAdminsPage> {
});
}
} catch (e) {
mySnackeBarError('فشل في جلب البيانات: $e');
mySnackbarError('فشل في جلب البيانات: $e');
} finally {
setState(() => _isLoading = false);
}
@@ -53,7 +53,7 @@ class _PendingAdminsPageState extends State<PendingAdminsPage> {
_fetchPendingAdmins(); // تحديث القائمة
}
} catch (e) {
mySnackeBarError('حدث خطأ: $e');
mySnackbarError('حدث خطأ: $e');
}
}