Add country dropdown selector to login screens of siro_service and siro_admin

This commit is contained in:
Hamza-Ayed
2026-06-29 00:41:31 +03:00
parent 29d3a8ae7e
commit c4fd859257
4 changed files with 97 additions and 1 deletions

View File

@@ -23,6 +23,13 @@ class OtpHelper extends GetxController {
static final String _checkAdminLogin =
'${AppLink.server}/Admin/auth/login.php';
var selectedCountry = 'Jordan'.obs;
void changeCountry(String country) {
selectedCountry.value = country;
box.write(BoxName.countryCode, country);
}
/// إرسال OTP
static Future<bool> sendOtp(String phoneNumber) async {
try {
@@ -281,6 +288,7 @@ class OtpHelper extends GetxController {
@override
void onInit() {
selectedCountry.value = box.read(BoxName.countryCode) ?? 'Jordan';
super.onInit();
DeviceHelper.getDeviceFingerprint().then((deviceFingerprint) {
box.write(BoxName.fingerPrint, deviceFingerprint);

View File

@@ -297,6 +297,57 @@ class _AdminLoginPageState extends State<AdminLoginPage>
return null;
},
),
const SizedBox(height: 20),
// ── Country Dropdown ───────────────────────────
const Row(
children: [
Icon(Icons.public_rounded,
color: _C.accent, size: 16),
SizedBox(width: 8),
Text(
'الدولة',
style: TextStyle(
color: _C.textSec,
fontSize: 13,
fontWeight: FontWeight.w600,
letterSpacing: 0.3,
),
),
],
),
const SizedBox(height: 10),
Obx(() {
final otpHelper = Get.find<OtpHelper>();
return Container(
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 4),
decoration: BoxDecoration(
color: _C.inputBg,
borderRadius: BorderRadius.circular(14),
border: Border.all(color: _C.border, width: 1),
),
child: DropdownButtonHideUnderline(
child: DropdownButton<String>(
value: otpHelper.selectedCountry.value,
icon: const Icon(Icons.arrow_drop_down, color: _C.accent),
isExpanded: true,
dropdownColor: _C.card,
style: const TextStyle(color: _C.textPrimary, fontSize: 16),
items: ['Jordan', 'Egypt', 'Syria'].map((String country) {
return DropdownMenuItem<String>(
value: country,
child: Text(country.tr),
);
}).toList(),
onChanged: (String? val) {
if (val != null) {
otpHelper.changeCountry(val);
}
},
),
),
);
}),
const SizedBox(height: 28),
// ── Submit button ────────────────────────────