yubioath-flutter/lib/oath/views/reset_dialog.dart

67 lines
2.1 KiB
Dart
Raw Normal View History

2022-10-04 13:12:54 +03:00
/*
* Copyright (C) 2022 Yubico.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2022-01-21 13:30:14 +03:00
import 'package:flutter/material.dart';
2022-09-06 15:30:18 +03:00
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
2022-01-21 13:30:14 +03:00
import 'package:flutter_riverpod/flutter_riverpod.dart';
2022-03-25 17:43:32 +03:00
import '../../app/message.dart';
2022-01-21 13:30:14 +03:00
import '../../app/models.dart';
import '../../app/state.dart';
import '../../widgets/responsive_dialog.dart';
import '../state.dart';
2022-01-21 13:30:14 +03:00
class ResetDialog extends ConsumerWidget {
final DevicePath devicePath;
2022-05-12 10:56:55 +03:00
const ResetDialog(this.devicePath, {super.key});
2022-01-21 13:30:14 +03:00
@override
Widget build(BuildContext context, WidgetRef ref) {
2023-02-28 17:02:12 +03:00
final l10n = AppLocalizations.of(context)!;
return ResponsiveDialog(
title: Text(l10n.s_factory_reset),
2022-05-12 09:34:51 +03:00
actions: [
TextButton(
onPressed: () async {
await ref.read(oathStateProvider(devicePath).notifier).reset();
await ref.read(withContextProvider)((context) async {
Navigator.of(context).pop();
2023-02-28 17:02:12 +03:00
showMessage(context, l10n.l_oath_application_reset);
2022-05-12 09:34:51 +03:00
});
},
child: Text(l10n.s_reset),
2022-05-12 09:34:51 +03:00
),
],
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 18.0),
child: Column(
children: [
Text(
2023-02-28 17:02:12 +03:00
l10n.p_warning_factory_reset,
2023-02-07 16:38:23 +03:00
style: const TextStyle(fontWeight: FontWeight.bold),
),
2023-02-28 17:02:12 +03:00
Text(l10n.p_warning_disable_credentials),
]
.map((e) => Padding(
padding: const EdgeInsets.symmetric(vertical: 8.0),
child: e,
))
.toList(),
),
2022-01-21 13:30:14 +03:00
),
);
}
}