app_constant.dart 396 B

123456789101112131415
  1. import 'package:flutter/foundation.dart';
  2. class AppConstant {
  3. /// App运行在Release环境时,inProduction为true;当App运行在Debug和Profile环境时,inProduction为false
  4. static const bool inProduction = kReleaseMode;
  5. static bool isDriverTest = false;
  6. static bool isUnitTest = false;
  7. static const String theme = 'AppTheme';
  8. static const String locale = 'locale';
  9. }