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(
|
decoration: InputDecoration(
|
||||||
errorText: _errorText,
|
errorText: _errorText,
|
||||||
hintText: '****',
|
hintText: '****',
|
||||||
|
suffix: IconButton(
|
||||||
|
icon: const Icon(Icons.lock_open_outlined),
|
||||||
|
onPressed: () => tryUnlock(_textEditingController.text),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (_inputBlocked)
|
if (_inputBlocked)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue