From 9ef06cdec285dadf0c920f481799dc9bf0dfec42 Mon Sep 17 00:00:00 2001 From: stopflock Date: Sat, 4 Oct 2025 16:49:20 -0500 Subject: [PATCH] Globe emoji on Language section, disable dev mode --- lib/dev_config.dart | 2 +- lib/screens/settings_screen.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/dev_config.dart b/lib/dev_config.dart index 176df52..6f6445d 100644 --- a/lib/dev_config.dart +++ b/lib/dev_config.dart @@ -38,7 +38,7 @@ const String kClientName = 'DeFlock'; // Note: Version is now dynamically retrieved from VersionService // Development/testing features - set to false for production builds -const bool kEnableDevelopmentModes = true; // Set to false to hide sandbox/simulate modes and force production mode +const bool kEnableDevelopmentModes = false; // Set to false to hide sandbox/simulate modes and force production mode // Navigation features - set to false to hide navigation UI elements while in development const bool kEnableNavigationFeatures = kEnableDevelopmentModes; // Hide navigation until fully implemented diff --git a/lib/screens/settings_screen.dart b/lib/screens/settings_screen.dart index e2a0301..504f338 100644 --- a/lib/screens/settings_screen.dart +++ b/lib/screens/settings_screen.dart @@ -73,7 +73,7 @@ class SettingsScreen extends StatelessWidget { _buildNavigationTile( context, icon: Icons.language, - title: locService.t('settings.language'), + title: '🌎 ${locService.t('settings.language')}', subtitle: locService.t('settings.languageSubtitle'), onTap: () => Navigator.pushNamed(context, '/settings/language'), ),