mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-27 23:09:35 +01:00
fix: key verification dialog button order
This commit is contained in:
parent
7f2d61e0a4
commit
c5adfc2ab2
@ -205,15 +205,15 @@ class _KeyVerificationPageState extends State<KeyVerificationDialog> {
|
|||||||
],
|
],
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
);
|
);
|
||||||
buttons.add(AdaptiveFlatButton(
|
|
||||||
child: Text(widget.l10n.theyMatch),
|
|
||||||
onPressed: () => widget.request.acceptSas(),
|
|
||||||
));
|
|
||||||
buttons.add(AdaptiveFlatButton(
|
buttons.add(AdaptiveFlatButton(
|
||||||
textColor: Colors.red,
|
textColor: Colors.red,
|
||||||
child: Text(widget.l10n.theyDontMatch),
|
child: Text(widget.l10n.theyDontMatch),
|
||||||
onPressed: () => widget.request.rejectSas(),
|
onPressed: () => widget.request.rejectSas(),
|
||||||
));
|
));
|
||||||
|
buttons.add(AdaptiveFlatButton(
|
||||||
|
child: Text(widget.l10n.theyMatch),
|
||||||
|
onPressed: () => widget.request.acceptSas(),
|
||||||
|
));
|
||||||
break;
|
break;
|
||||||
case KeyVerificationState.waitingSas:
|
case KeyVerificationState.waitingSas:
|
||||||
var acceptText = widget.request.sasTypes.contains('emoji')
|
var acceptText = widget.request.sasTypes.contains('emoji')
|
||||||
|
Loading…
Reference in New Issue
Block a user