Merge branch 'master_mohemm_flutter'

# Conflicts:
#	pubspec.yaml
mohemm_HMG_flutter_upgrade
haroon amjad 2 years ago
commit 2ea045cc81

@ -1260,7 +1260,7 @@ class ChatProviderModel with ChangeNotifier, DiagnosticableTreeMixin {
}
bool checkFileSize(String path) {
int fileSizeLimit = 1024;
int fileSizeLimit = 5120;
File f = File(path);
double fileSizeInKB = f.lengthSync() / 5000;
double fileSizeInMB = fileSizeInKB / 5000;

@ -313,7 +313,7 @@ class _MarkAttendanceWidgetState extends State<MarkAttendanceWidget> {
void getHuaweiCurrentLocation(String attendanceType) async {
try {
Utils.showLoading(context);
FusedLocationProviderClient locationService = FusedLocationProviderClient();
FusedLocationProviderClient locationService = FusedLocationProviderClient()..initFusedLocationService();
LocationRequest locationRequest = LocationRequest();
locationRequest.priority = LocationRequest.PRIORITY_BALANCED_POWER_ACCURACY;
locationRequest.interval = 500;
@ -377,6 +377,8 @@ class _MarkAttendanceWidgetState extends State<MarkAttendanceWidget> {
} catch (error) {
print("HUAWEI LOCATION ERROR!!!!!");
print(error);
Utils.hideLoading(context);
Utils.handleException(error, context, null);
}
}

Loading…
Cancel
Save