passo_mobile_app/lib/utils/global.dart

36 lines
1.2 KiB
Dart
Raw Normal View History

2023-04-05 00:54:24 +00:00
import 'package:hive/hive.dart';
2023-09-22 08:07:13 +00:00
import '../model/profile/basic_information/primary-information.dart';
2022-11-28 08:03:13 +00:00
double screenWidth = 0;
double screenHeight = 0;
double blockSizeHorizontal = 0;
double blockSizeVertical = 0;
double safeAreaHorizontal = 0;
double safeAreaVertical = 0;
double safeBlockHorizontal = 0;
2023-04-05 00:54:24 +00:00
double safeBlockVertical = 0;
const xClientKey = "unitK3CQaXiWlPReDsBzmmwBZPd9Re1z";
const xClientSecret = "unitcYqAN7GGalyz";
2023-09-22 08:07:13 +00:00
String? globalFistname;
String? globalLastname;
String? globalMiddleName;
DateTime? globalBday;
String? globalSex;
Profile? globalCurrentProfile;
2023-05-22 02:23:56 +00:00
2023-09-25 01:43:03 +00:00
const String urlDownloadArmeabiv7aAPK =
"https://agusandelnorte.gov.ph/media/public/transparency/downloadables/UniT-App/v1.0.1/beta/unit_app_v1_0_1_beta_armeabi-v7a-release.apk?download";
const String urlDownloadX8664APK =
"https://agusandelnorte.gov.ph/media/public/transparency/downloadables/UniT-App/v1.0.1/beta/unit_app_v1_0_1_beta_x86_64-release.apk?download";
const String urlDownloadarm64v8aAPK =
"https://agusandelnorte.gov.ph/media/public/transparency/downloadables/UniT-App/v1.0.1/beta/unit_app_v1_0_1_beta_arm64-v8a-release.apk?download";
2023-04-05 00:54:24 +00:00
//// hive boxes
Box? CREDENTIALS;
2023-04-13 08:45:19 +00:00
Box? SOS;