chore: Add more explaining text for key verification
This commit is contained in:
parent
f7c89ddf9e
commit
20c678553a
4 changed files with 33 additions and 2 deletions
|
|
@ -351,6 +351,16 @@ class BootstrapDialogState extends State<BootstrapDialog> {
|
|||
onPressed: _recoveryKeyInputLoading
|
||||
? null
|
||||
: () async {
|
||||
final consent = await showOkCancelAlertDialog(
|
||||
context: context,
|
||||
title: L10n.of(context)!.verifyOtherDevice,
|
||||
message: L10n.of(context)!
|
||||
.verifyOtherDeviceDescription,
|
||||
okLabel: L10n.of(context)!.ok,
|
||||
cancelLabel: L10n.of(context)!.cancel,
|
||||
fullyCapitalizedForMaterial: false,
|
||||
);
|
||||
if (consent != OkCancelResult.ok) return;
|
||||
final req = await showFutureLoadingDialog(
|
||||
context: context,
|
||||
future: () async {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue