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

disable autocorrect on cesium id/pwd

parent 105d32a8
No related branches found
No related tags found
No related merge requests found
Pipeline #18934 waiting for manual action
......@@ -119,6 +119,7 @@ class ImportG1v1 extends StatelessWidget {
TextFormField(
key: keyCesiumId,
autofocus: true,
autocorrect: false,
onChanged: (text) {
if (debounce?.isActive ?? false) {
debounce!.cancel();
......@@ -154,6 +155,7 @@ class ImportG1v1 extends StatelessWidget {
TextFormField(
key: keyCesiumPassword,
autofocus: true,
autocorrect: false,
onChanged: (text) {
if (debounce?.isActive ?? false) {
debounce!.cancel();
......
......@@ -29,11 +29,8 @@ class TransactionInProgress extends StatelessWidget {
String resultText;
bool isLoading = true;
// Map jsonResult;
final result = sub.transactionStatus;
// sub.spawnBlock();
log.d(walletProfiles.address);
final from = fromAddress ?? myWalletProvider.getDefaultWallet().name!;
......
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