From f26bd5a81365b00cf1126e3f2f4d238830ff6cc8 Mon Sep 17 00:00:00 2001 From: julian Date: Thu, 22 Sep 2022 18:12:39 -0600 Subject: [PATCH] no submit pin button --- lib/widgets/custom_pin_put/pin_keyboard.dart | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/lib/widgets/custom_pin_put/pin_keyboard.dart b/lib/widgets/custom_pin_put/pin_keyboard.dart index 5b52460aa..6c1f50d78 100644 --- a/lib/widgets/custom_pin_put/pin_keyboard.dart +++ b/lib/widgets/custom_pin_put/pin_keyboard.dart @@ -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, + // ), ], ) ],