Skip to content

Commit

Permalink
fix: disable auto-correct in URL text-field (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomBursch authored Jan 23, 2022
1 parent 003e77e commit c4bf9f8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/pages/setup_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class SetupPage extends StatelessWidget {
controller: urlController,
autofillHints: const [AutofillHints.url],
textInputAction: TextInputAction.go,
autocorrect: false,
keyboardType: TextInputType.url,
onSubmitted: (text) => BlocProvider.of<AuthCubit>(context)
.setupServer(urlController.text),
Expand Down

0 comments on commit c4bf9f8

Please sign in to comment.