mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-12 09:27:01 +00:00
no submit pin button
This commit is contained in:
parent
43b673ec0d
commit
996f17d738
1 changed files with 8 additions and 4 deletions
|
@ -312,8 +312,9 @@ class PinKeyboard extends StatelessWidget {
|
|||
),
|
||||
Row(
|
||||
children: [
|
||||
BackspaceKey(
|
||||
onPressed: _backHandler,
|
||||
const SizedBox(
|
||||
height: 72,
|
||||
width: 72,
|
||||
),
|
||||
const SizedBox(
|
||||
width: 24,
|
||||
|
@ -325,9 +326,12 @@ class PinKeyboard extends StatelessWidget {
|
|||
const SizedBox(
|
||||
width: 24,
|
||||
),
|
||||
SubmitKey(
|
||||
onPressed: _submitHandler,
|
||||
BackspaceKey(
|
||||
onPressed: _backHandler,
|
||||
),
|
||||
// SubmitKey(
|
||||
// onPressed: _submitHandler,
|
||||
// ),
|
||||
],
|
||||
)
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue