Open Simpler1 opened 2 years ago
Hi @Simpler1,
There is a similar issue describing this case https://github.com/flutter/flutter/issues/73835, Please follow up there for further updates, Closing this issue as a duplicate.
Thank you.
Hi @maheshmnj,
I think this issue should be reopened. It's similar, but not the same as issue 73835. When the keyboardType is number, there is no "return" button displayed on the keyboard and the "Done" button is active, but doesn't respond.
Is there a workaround to at least use the "Done" button to advance to the next field.?
(I've updated the code sample to use the number keypad and title to indicate that this particular issue is specific to browsers on Apple devices.)
Thanks for the info reopening based on the above comment.
Thanks for the info @Simpler1, I am able to reproduce the issue The arrow keys are disabled to navigate to next field on IOS while it works fine on Android.
Android | IOS |
---|---|
Android | IOS |
---|---|
This issue is with TextInputType.number
and works fine TextInputType.text
cc @mdebbar
I had the same issue, neither next or done works when TextInputType.number is selected.
I had the same issue, neither next or done works when TextInputType.number is selected.
Any solution to this problem yet?
Any solution to this problem yet?
Finding a similar issue myself with this, any news?
Steps to Reproduce
flutter build web
on the code sampleExpected results: The "next" button should progress to the next input field
Actual results: Insensitive "next" button
Code sample
```dart import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return const MaterialApp( home: MyHomePage(), ); } } class MyHomePage extends StatefulWidget { const MyHomePage({Key? key}) : super(key: key); @override StateAdditional Info
``` This problem/UI is specific to Apple devices, but Android has a similar problem with the "return/Go/Next" key on the keyboard itself. I have tried this on multiple mobile browsers on Apple devices including Chrome, Edge, Safari, Opera, DuckDuckGo and all have the problem. ``` ``` flutter doctor -v [√] Flutter (Channel stable, 2.8.1, on Microsoft Windows [Version 10.0.18363.1916], locale en-US) • Flutter version 2.8.1 at c:\user1\Personal\flutter • Upstream repository https://github.com/flutter/flutter.git • Framework revision 77d935af4d (3 weeks ago), 2021-12-16 08:37:33 -0800 • Engine revision 890a5fca2e • Dart version 2.15.1 [√] Android toolchain - develop for Android devices (Android SDK version 32.0.0) • Android SDK at C:\Users\user1\AppData\Local\Android\sdk • Platform android-32, build-tools 32.0.0 • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7249189) • All Android licenses accepted. [√] Chrome - develop for the web • Chrome at C:\Program Files\Google\Chrome\Application\chrome.exe [√] Android Studio (version 2020.3) • Android Studio at C:\Program Files\Android\Android Studio • Flutter plugin can be installed from: https://plugins.jetbrains.com/plugin/9212-flutter • Dart plugin can be installed from: https://plugins.jetbrains.com/plugin/6351-dart • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7249189) [√] VS Code (version 1.63.2) • VS Code at C:\Users\user1\AppData\Local\Programs\Microsoft VS Code • Flutter extension version 3.32.0 [√] Connected device (2 available) • Chrome (web) • chrome • web-javascript • Google Chrome 96.0.4664.110 • Edge (web) • edge • web-javascript • Microsoft Edge 96.0.1054.62 • No issues found! ```