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 1
1
import 'package:bloc/bloc.dart' ;
2
2
import 'package:equatable/equatable.dart' ;
3
3
import 'package:ht_data_repository/ht_data_repository.dart' ;
4
- import 'package:ht_shared/ht_shared.dart' ;
4
+ import 'package:ht_shared/ht_shared.dart' ;
5
5
6
6
part 'app_configuration_event.dart' ;
7
7
part 'app_configuration_state.dart' ;
@@ -28,7 +28,9 @@ class AppConfigurationBloc
28
28
) async {
29
29
emit (state.copyWith (status: AppConfigurationStatus .loading));
30
30
try {
31
- final remoteConfig = await _remoteConfigRepository.read (id: kRemoteConfigId);
31
+ final remoteConfig = await _remoteConfigRepository.read (
32
+ id: kRemoteConfigId,
33
+ );
32
34
emit (
33
35
state.copyWith (
34
36
status: AppConfigurationStatus .success,
Original file line number Diff line number Diff line change @@ -261,7 +261,9 @@ class _AppConfigurationPageState extends State<AppConfigurationPage>
261
261
style: Theme .of (dialogContext).textTheme.titleLarge,
262
262
),
263
263
content: Text (
264
- AppLocalizationsX (context).l10n.confirmConfigUpdateDialogContent,
264
+ AppLocalizationsX (
265
+ context,
266
+ ).l10n.confirmConfigUpdateDialogContent,
265
267
style: Theme .of (dialogContext).textTheme.bodyMedium,
266
268
),
267
269
actions: < Widget > [
@@ -277,7 +279,9 @@ class _AppConfigurationPageState extends State<AppConfigurationPage>
277
279
dialogContext,
278
280
).colorScheme.onError,
279
281
),
280
- child: Text (AppLocalizationsX (context).l10n.confirmSaveButton),
282
+ child: Text (
283
+ AppLocalizationsX (context).l10n.confirmSaveButton,
284
+ ),
281
285
),
282
286
],
283
287
);
You can’t perform that action at this time.
0 commit comments