mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-12-25 23:12:37 +01:00
design: Adjust open url dialog design a little bit
This commit is contained in:
parent
bd7a4c9dfb
commit
be04c5a46e
@ -38,22 +38,20 @@ class UrlLauncher {
|
|||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
final consent = await showConfirmationDialog(
|
final consent = await showModalActionSheet<_LaunchUrlResponse>(
|
||||||
context: context,
|
context: context,
|
||||||
title: L10n.of(context)!.openLinkInBrowser,
|
title: url,
|
||||||
message: url,
|
style: AdaptiveStyle.material,
|
||||||
actions: [
|
actions: [
|
||||||
AlertDialogAction(
|
SheetAction(
|
||||||
key: null,
|
|
||||||
label: L10n.of(context)!.cancel,
|
|
||||||
),
|
|
||||||
AlertDialogAction(
|
|
||||||
key: _LaunchUrlResponse.copy,
|
key: _LaunchUrlResponse.copy,
|
||||||
|
icon: Icons.copy_outlined,
|
||||||
label: L10n.of(context)!.copy,
|
label: L10n.of(context)!.copy,
|
||||||
),
|
),
|
||||||
AlertDialogAction(
|
SheetAction(
|
||||||
key: _LaunchUrlResponse.launch,
|
key: _LaunchUrlResponse.launch,
|
||||||
label: L10n.of(context)!.ok,
|
icon: Icons.launch_outlined,
|
||||||
|
label: L10n.of(context)!.openLinkInBrowser,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user