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
......@@ -96,7 +96,7 @@ class _HomeScreenState extends State<HomeScreen> {
// sub.nodeConnected = false;
// }
// Améliore ce code car il y a un bug: parfois l'app se croit hors ligne, alors que c'est faux, le téléphone est bien connecté à internet
// Améliore ce code car il y a un bug: parfois l'app se croit hors ligne, alors que c'est faux, le téléphone est bien connecté à internet
// (GPT vscode extension fixed it for my...)
HomeProvider homeProvider =
Provider.of<HomeProvider>(context, listen: false);
......
......@@ -637,7 +637,8 @@ void paymentPopup(BuildContext context, String toAddress) {
autofocus: true,
maxLines: 1,
textAlign: TextAlign.center,
keyboardType: TextInputType.number,
keyboardType: const TextInputType.numberWithOptions(
decimal: true),
onChanged: (_) async {
fees = await sub.txFees(
defaultWallet.address,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment