Files
syncrow-app/lib/utils/resource_manager/constants.dart
Mohammad Salameh a9fdb2fc76 modified UI padding handling approach
added auth API endpoints
initialized curtains view for further development
2024-03-05 11:18:08 +03:00

13 lines
352 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;
}