revert non-changes

This commit is contained in:
Adam Velebil 2023-02-28 15:21:22 +01:00
parent 821cdfb118
commit b63b8f0a2e
No known key found for this signature in database
GPG Key ID: C9B1E4A3CBBD2E10
4 changed files with 3 additions and 4 deletions

View File

@ -168,7 +168,8 @@ class _AndroidSettingsPageState extends ConsumerState<AndroidSettingsPage> {
SwitchListTile(
title: const Text('Silence NFC sounds'),
subtitle: nfcSilenceSounds
? const Text('No sounds will be played on NFC tap')
? const Text(
'No sounds will be played on NFC tap')
: const Text('Sound will play on NFC tap'),
value: nfcSilenceSounds,
key: keys.nfcSilenceSoundsSettings,

View File

@ -39,7 +39,6 @@ class OathScreen extends ConsumerWidget {
@override
Widget build(BuildContext context, WidgetRef ref) {
return ref.watch(oathStateProvider(devicePath)).when(
loading: () => MessagePage(
title: Text(AppLocalizations.of(context)!.oath_authenticator),

View File

@ -34,7 +34,6 @@ class SettingsPage extends ConsumerWidget {
final themeMode = ref.watch(themeModeProvider);
final theme = Theme.of(context);
return ResponsiveDialog(
title: Text(AppLocalizations.of(context)!.general_settings),
child: Theme(