style: format
CI / format (push) Has been cancelled
CI / test (push) Has been cancelled
CI / packaging (push) Has been cancelled

This commit is contained in:
Tien Do Nam
2026-08-05 18:45:53 +02:00
parent 852e135fe2
commit 3ea1b879c3
2 changed files with 14 additions and 10 deletions
+3 -1
View File
@@ -163,7 +163,9 @@ class _ReceivePageState extends State<ReceivePage> with Refena {
mainAxisAlignment: MainAxisAlignment.center,
children: [
TextButton.icon(
onPressed: !vm.sender.https ? null : () async => await context.push(
onPressed: !vm.sender.https
? null
: () async => await context.push(
() => VerifyPage(
fingerprint: CombinedFingerprint.load(context, vm.sender.fingerprint),
),
+3 -1
View File
@@ -145,7 +145,9 @@ class _SendPageState extends State<SendPage> with Refena {
child: Padding(
padding: const EdgeInsets.only(top: 8),
child: TextButton.icon(
onPressed: !targetDevice.https ? null : () async => await context.push(
onPressed: !targetDevice.https
? null
: () async => await context.push(
() => VerifyPage(
fingerprint: CombinedFingerprint.load(context, targetDevice.fingerprint),
),