fix: Add missing unlock button to lockscreen textfield

This commit is contained in:
Krille 2024-06-17 08:07:34 +02:00
parent 13ecf58329
commit 5998c9e29e
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652

View file

@ -100,6 +100,10 @@ class _LockScreenState extends State<LockScreen> {
decoration: InputDecoration(
errorText: _errorText,
hintText: '****',
suffix: IconButton(
icon: const Icon(Icons.lock_open_outlined),
onPressed: () => tryUnlock(_textEditingController.text),
),
),
),
if (_inputBlocked)