File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 11import 'package:bloc/bloc.dart' ;
22import 'package:equatable/equatable.dart' ;
33import 'package:ht_data_repository/ht_data_repository.dart' ;
4- import 'package:ht_shared/ht_shared.dart' ;
4+ import 'package:ht_shared/ht_shared.dart' ;
55
66part 'app_configuration_event.dart' ;
77part 'app_configuration_state.dart' ;
@@ -28,7 +28,9 @@ class AppConfigurationBloc
2828 ) async {
2929 emit (state.copyWith (status: AppConfigurationStatus .loading));
3030 try {
31- final remoteConfig = await _remoteConfigRepository.read (id: kRemoteConfigId);
31+ final remoteConfig = await _remoteConfigRepository.read (
32+ id: kRemoteConfigId,
33+ );
3234 emit (
3335 state.copyWith (
3436 status: AppConfigurationStatus .success,
Original file line number Diff line number Diff line change @@ -261,7 +261,9 @@ class _AppConfigurationPageState extends State<AppConfigurationPage>
261261 style: Theme .of (dialogContext).textTheme.titleLarge,
262262 ),
263263 content: Text (
264- AppLocalizationsX (context).l10n.confirmConfigUpdateDialogContent,
264+ AppLocalizationsX (
265+ context,
266+ ).l10n.confirmConfigUpdateDialogContent,
265267 style: Theme .of (dialogContext).textTheme.bodyMedium,
266268 ),
267269 actions: < Widget > [
@@ -277,7 +279,9 @@ class _AppConfigurationPageState extends State<AppConfigurationPage>
277279 dialogContext,
278280 ).colorScheme.onError,
279281 ),
280- child: Text (AppLocalizationsX (context).l10n.confirmSaveButton),
282+ child: Text (
283+ AppLocalizationsX (context).l10n.confirmSaveButton,
284+ ),
281285 ),
282286 ],
283287 );
You can’t perform that action at this time.
0 commit comments