16 lines
452 B
Dart
16 lines
452 B
Dart
class AppConfig {
|
|
static const double initWeight = 73;
|
|
static const double minWeight = 70;
|
|
static const double maxWeight = 75;
|
|
static const double goalWeight = 72;
|
|
|
|
static const double initSpot = 30;
|
|
static const double minSpot = 10;
|
|
static const double maxSpot = 120;
|
|
static const double goalTotalSpot = 400;
|
|
|
|
static const int goalAvgSleep = 8;
|
|
|
|
static const List<String> sportProjectList = ['羽毛球', '乒乓球', '跑步'];
|
|
}
|