5 lines
154 B
Dart
5 lines
154 B
Dart
// Global variables accessible throughout the app
|
|
library globals;
|
|
|
|
// Whether the app is in stealth mode (obfuscated content)
|
|
bool isStealthMode = false; |