BASE: Imlement Localization In Auth.

This commit is contained in:
2025-12-03 15:25:19 +05:00
parent 2736727592
commit 3e18352abe
24 changed files with 3484 additions and 795 deletions

View File

@@ -44,7 +44,7 @@ class MapPickerPage extends StatelessWidget {
options: MapOptions(
initialCenter:
controller.pickedPlace.value?.coordinates ??
LatLng(20.5937, 78.9629), // Default India center
LatLng(41.3775, 64.5853), // Default UZB center
initialZoom: 13,
onTap: (tapPos, latlng) {
controller.addLatLngOnly(latlng);
@@ -180,7 +180,8 @@ class MapPickerPage extends StatelessWidget {
title: "Confirm Location".tr,
color: AppThemeData.mainColor,
textColor: AppThemeData.grey50,
height: 4.h,
borderRadius: 12,
height: 6,
onPress: () async {
final selected = controller.pickedPlace.value;
if (selected != null) {