25 lines
631 B
Dart
25 lines
631 B
Dart
import 'package:hive/hive.dart';
|
|
|
|
import '../model/profile/basic_information/primary-information.dart';
|
|
|
|
double screenWidth = 0;
|
|
double screenHeight = 0;
|
|
double blockSizeHorizontal = 0;
|
|
double blockSizeVertical = 0;
|
|
double safeAreaHorizontal = 0;
|
|
double safeAreaVertical = 0;
|
|
double safeBlockHorizontal = 0;
|
|
double safeBlockVertical = 0;
|
|
|
|
const xClientKey = "unitK3CQaXiWlPReDsBzmmwBZPd9Re1z";
|
|
const xClientSecret = "unitcYqAN7GGalyz";
|
|
String? globalFistname;
|
|
String? globalLastname;
|
|
String? globalMiddleName;
|
|
DateTime? globalBday;
|
|
String? globalSex;
|
|
Profile? globalCurrentProfile;
|
|
|
|
//// hive boxes
|
|
Box? CREDENTIALS;
|
|
Box? SOS; |