7 lines
216 B
Dart
7 lines
216 B
Dart
// Global variables accessible throughout the app
|
|
library globals;
|
|
|
|
import 'core/config/app_config.dart';
|
|
|
|
// Whether the app is in stealth mode (obfuscated content)
|
|
bool get isStealthMode => AppConfig.isStealthMode; |