Skip to content

Commit b7ec3ca

Browse files
committed
Fix show QR code button label
1 parent 6e53048 commit b7ec3ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/lib/routes/encryption_key_route.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ class EncryptionKeyRouteState extends State<EncryptionKeyRoute> {
7070
? null
7171
: () => setState(() => showQrCode = !showQrCode),
7272
label: showQrCode
73-
? const Text('Show QR Code')
74-
: const Text('Hide QR Code'),
73+
? const Text('Hide QR Code')
74+
: const Text('Show QR Code'),
7575
icon: const Icon(Icons.qr_code),
7676
),
7777
if (showQrCode)

0 commit comments

Comments
 (0)