chore: Merge upstream changes --------- Signed-off-by: Krille <c.kussowski@famedly.com> Co-authored-by: krille-chan <christian-kussowski@posteo.de> Co-authored-by: Krille <c.kussowski@famedly.com> Co-authored-by: Linerly <linerly@proton.me> Co-authored-by: Priit Jõerüüt <hwlate@joeruut.com> Co-authored-by: 大王叫我来巡山 <hamburger2048@users.noreply.hosted.weblate.org> Co-authored-by: fadelkon <fadelkon@posteo.net> Co-authored-by: Aindriú Mac Giolla Eoin <aindriu80@gmail.com> Co-authored-by: Edgars Andersons <Edgars+Weblate@gaitenis.id.lv> Co-authored-by: josé m <correoxm@disroot.org> Co-authored-by: Bezruchenko Simon <worcposj44@gmail.com> Co-authored-by: Christian <christian-pauly@posteo.de> Co-authored-by: - <hitekex@yandex.ru> Co-authored-by: Angelo Schirinzi <Odi-3@users.noreply.hosted.weblate.org> Co-authored-by: xabirequejo <xabi.rn@gmail.com> Co-authored-by: Piotr Orzechowski <piotr@orzechowski.tech> Co-authored-by: Rex_sa <rex.sa@pm.me> Co-authored-by: Tewuzij <tenajeza@outlook.com> Co-authored-by: goknarbahceli <goknarbahceli@proton.me> Co-authored-by: தமிழ்நேரம் <anishprabu.t@gmail.com> Co-authored-by: Erin <erin@erindesu.cz> Co-authored-by: EpicKiwi <me@epickiwi.fr> Co-authored-by: Christian Tietze <me@christiantietze.de> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
79 lines
2.4 KiB
Dart
79 lines
2.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
|
|
import 'package:fluffychat/widgets/adaptive_dialogs/adaptive_dialog_action.dart';
|
|
|
|
enum OkCancelResult { ok, cancel }
|
|
|
|
Future<OkCancelResult?> showOkCancelAlertDialog({
|
|
required BuildContext context,
|
|
required String title,
|
|
String? message,
|
|
String? okLabel,
|
|
String? cancelLabel,
|
|
bool isDestructive = false,
|
|
bool useRootNavigator = true,
|
|
}) =>
|
|
showAdaptiveDialog<OkCancelResult>(
|
|
context: context,
|
|
useRootNavigator: useRootNavigator,
|
|
builder: (context) => AlertDialog.adaptive(
|
|
title: ConstrainedBox(
|
|
constraints: const BoxConstraints(maxWidth: 256),
|
|
child: Text(title),
|
|
),
|
|
content: ConstrainedBox(
|
|
constraints: const BoxConstraints(maxWidth: 256),
|
|
child: message == null ? null : Text(message),
|
|
),
|
|
actions: [
|
|
AdaptiveDialogAction(
|
|
onPressed: () => Navigator.of(context)
|
|
.pop<OkCancelResult>(OkCancelResult.cancel),
|
|
child: Text(cancelLabel ?? L10n.of(context).cancel),
|
|
),
|
|
AdaptiveDialogAction(
|
|
onPressed: () =>
|
|
Navigator.of(context).pop<OkCancelResult>(OkCancelResult.ok),
|
|
autofocus: true,
|
|
child: Text(
|
|
okLabel ?? L10n.of(context).ok,
|
|
style: isDestructive
|
|
? TextStyle(color: Theme.of(context).colorScheme.error)
|
|
: null,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
|
|
Future<OkCancelResult?> showOkAlertDialog({
|
|
required BuildContext context,
|
|
required String title,
|
|
String? message,
|
|
String? okLabel,
|
|
bool useRootNavigator = true,
|
|
}) =>
|
|
showAdaptiveDialog<OkCancelResult>(
|
|
context: context,
|
|
useRootNavigator: useRootNavigator,
|
|
builder: (context) => AlertDialog.adaptive(
|
|
title: ConstrainedBox(
|
|
constraints: const BoxConstraints(maxWidth: 256),
|
|
child: Text(title),
|
|
),
|
|
content: ConstrainedBox(
|
|
constraints: const BoxConstraints(maxWidth: 256),
|
|
child: message == null ? null : Text(message),
|
|
),
|
|
actions: [
|
|
AdaptiveDialogAction(
|
|
onPressed: () =>
|
|
Navigator.of(context).pop<OkCancelResult>(OkCancelResult.ok),
|
|
autofocus: true,
|
|
child: Text(okLabel ?? L10n.of(context).close),
|
|
),
|
|
],
|
|
),
|
|
);
|