mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 09:45:22 +00:00
28 lines
542 B
Dart
28 lines
542 B
Dart
//ignore_for_file: constant_identifier_names
|
|
abstract class Constants {
|
|
static const String languageCode = "en";
|
|
|
|
static const String countryCode = "US";
|
|
|
|
static const double appBarHeightPercentage = 0.12;
|
|
static const double bottomNavBarHeightPercentage = 0.1175;
|
|
static late double appBarHeight;
|
|
static late double bottomNavBarHeight;
|
|
|
|
static const double defaultPadding = 16;
|
|
|
|
static const String token = '';
|
|
}
|
|
|
|
enum DeviceType {
|
|
AC,
|
|
Lights,
|
|
DoorLock,
|
|
Curtain,
|
|
ThreeGang,
|
|
Gateway,
|
|
Sensors,
|
|
Gang,
|
|
Other,
|
|
}
|