mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 19:22:22 +01:00
24 lines
780 B
Dart
24 lines
780 B
Dart
import 'package:fluent_ui/fluent_ui.dart';
|
|
import 'package:reboot_launcher/src/dialog/abstract/dialog.dart';
|
|
import 'package:reboot_launcher/src/dialog/abstract/dialog_button.dart';
|
|
import 'package:reboot_launcher/src/util/translations.dart';
|
|
|
|
Future<void> showDllDeletedDialog(Function() onConfirm) => showAppDialog(
|
|
builder: (context) => InfoDialog(
|
|
text: translations.dllDeletedTitle,
|
|
buttons: [
|
|
DialogButton(
|
|
type: ButtonType.secondary,
|
|
text: translations.dllDeletedSecondaryAction,
|
|
),
|
|
DialogButton(
|
|
type: ButtonType.secondary,
|
|
text: translations.dllDeletedPrimaryAction,
|
|
onTap: () {
|
|
Navigator.pop(context);
|
|
onConfirm();
|
|
},
|
|
),
|
|
],
|
|
)
|
|
); |