no submit pin button

This commit is contained in:
julian 2022-09-22 18:12:39 -06:00
parent 15739a22f8
commit f26bd5a813

View file

@ -312,8 +312,9 @@ class PinKeyboard extends StatelessWidget {
), ),
Row( Row(
children: [ children: [
BackspaceKey( const SizedBox(
onPressed: _backHandler, height: 72,
width: 72,
), ),
const SizedBox( const SizedBox(
width: 24, width: 24,
@ -325,9 +326,12 @@ class PinKeyboard extends StatelessWidget {
const SizedBox( const SizedBox(
width: 24, width: 24,
), ),
SubmitKey( BackspaceKey(
onPressed: _submitHandler, onPressed: _backHandler,
), ),
// SubmitKey(
// onPressed: _submitHandler,
// ),
], ],
) )
], ],