Co-authored-by: AlexisDanlos <91090088+AlexisDanlos@users.noreply.github.com> Reviewed-on: #54 Co-authored-by: AlexisDanlos <alexis.danlos@epitech.eu> Co-committed-by: AlexisDanlos <alexis.danlos@epitech.eu>
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; |