mirror of
https://github.com/Uuttssaavv/flutter-clean-architecture-riverpod.git
synced 2025-08-06 16:19:42 +08:00
7 lines
216 B
Dart
7 lines
216 B
Dart
import 'dart:io';
|
|
|
|
final kTestMode = Platform.environment.containsKey('FLUTTER_TEST');
|
|
const int PRODUCTS_PER_PAGE = 20;
|
|
const String USER_LOCAL_STORAGE_KEY = 'user';
|
|
const String APP_THEME_STORAGE_KEY = 'AppTheme';
|