fix: Add missing unlock button to lockscreen textfield
This commit is contained in:
parent
13ecf58329
commit
5998c9e29e
1 changed files with 4 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue