Skip to content
Snippets Groups Projects
Commit 9a4c1d60 authored by poka's avatar poka
Browse files

fix: bad virtual keybaord for tchois (team peer programming)

parent 8382cbfc
No related branches found
No related tags found
No related merge requests found
Pipeline #18562 failed
...@@ -637,7 +637,8 @@ void paymentPopup(BuildContext context, String toAddress) { ...@@ -637,7 +637,8 @@ void paymentPopup(BuildContext context, String toAddress) {
autofocus: true, autofocus: true,
maxLines: 1, maxLines: 1,
textAlign: TextAlign.center, textAlign: TextAlign.center,
keyboardType: TextInputType.number, keyboardType: const TextInputType.numberWithOptions(
decimal: true),
onChanged: (_) async { onChanged: (_) async {
fees = await sub.txFees( fees = await sub.txFees(
defaultWallet.address, defaultWallet.address,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment