From 5998c9e29ea9c93d077f90e4219e7edea215d331 Mon Sep 17 00:00:00 2001 From: Krille Date: Mon, 17 Jun 2024 08:07:34 +0200 Subject: [PATCH] fix: Add missing unlock button to lockscreen textfield --- lib/widgets/lock_screen.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/widgets/lock_screen.dart b/lib/widgets/lock_screen.dart index 17f4bef52..b756a3954 100644 --- a/lib/widgets/lock_screen.dart +++ b/lib/widgets/lock_screen.dart @@ -100,6 +100,10 @@ class _LockScreenState extends State { decoration: InputDecoration( errorText: _errorText, hintText: '****', + suffix: IconButton( + icon: const Icon(Icons.lock_open_outlined), + onPressed: () => tryUnlock(_textEditingController.text), + ), ), ), if (_inputBlocked)