Files
syncrow-app/lib/utils/resource_manager/constants.dart
Mohammad Salameh f8e8591d13 Implemented room device interface
(AC only)
2024-03-07 14:53:13 +03:00

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,
}