@@ -5,15 +5,15 @@ import 'package:flutter_news_app_web_dashboard_full_source_code/app_configuratio
55import 'package:flutter_news_app_web_dashboard_full_source_code/l10n/l10n.dart' ;
66import 'package:ui_kit/ui_kit.dart' ;
77
8- /// {@template app_configuration_tab }
9- /// A widget representing the "App " tab in the App Configuration page.
8+ /// {@template system_configuration_tab }
9+ /// A widget representing the "System " tab in the App Configuration page.
1010///
1111/// This tab allows configuration of application-level settings like
1212/// maintenance mode, force updates, and general app settings.
1313/// {@endtemplate}
14- class AppConfigurationTab extends StatefulWidget {
15- /// {@macro app_configuration_tab }
16- const AppConfigurationTab ({
14+ class SystemConfigurationTab extends StatefulWidget {
15+ /// {@macro system_configuration_tab }
16+ const SystemConfigurationTab ({
1717 required this .remoteConfig,
1818 required this .onConfigChanged,
1919 super .key,
@@ -26,10 +26,10 @@ class AppConfigurationTab extends StatefulWidget {
2626 final ValueChanged <RemoteConfig > onConfigChanged;
2727
2828 @override
29- State <AppConfigurationTab > createState () => _AppConfigurationTabState ();
29+ State <SystemConfigurationTab > createState () => _SystemConfigurationTabState ();
3030}
3131
32- class _AppConfigurationTabState extends State <AppConfigurationTab > {
32+ class _SystemConfigurationTabState extends State <SystemConfigurationTab > {
3333 /// Notifier for the index of the currently expanded top-level ExpansionTile.
3434 ///
3535 /// A value of `null` means no tile is expanded.
0 commit comments