mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 09:45:22 +00:00
22 lines
430 B
Dart
22 lines
430 B
Dart
abstract class Constants {
|
|
static const String languageCode = "en";
|
|
|
|
static const String countryCode = "US";
|
|
|
|
static const double appBarHeightPercentage = 0.1175;
|
|
static const double bottomNavBarHeightPercentage = 0.1175;
|
|
static late double appBarHeight;
|
|
static late double bottomNavBarHeight;
|
|
|
|
static const double defaultPadding = 16;
|
|
}
|
|
|
|
enum DeviceType {
|
|
AC,
|
|
Lights,
|
|
Door,
|
|
Curtain,
|
|
Screens,
|
|
Gateway,
|
|
}
|