zefyr

constants.dart 485B

1234567891011121314151617181920
  1. part of ct_assets_picker;
  2. class Constants {
  3. const Constants._();
  4. static GlobalKey pickerKey = GlobalKey();
  5. static AssetsPickerTextDelegate textDelegate = DefaultAssetsPickerTextDelegate();
  6. static SortPathDelegate sortPathDelegate = SortPathDelegate.common;
  7. static const List<int> defaultPreviewThumbSize = <int>[200, 200];
  8. }
  9. /// Log only in debug mode.
  10. /// 只在调试模式打印
  11. void realDebugPrint(dynamic message) {
  12. if (!kReleaseMode) {
  13. log('$message');
  14. }
  15. }