- Notifications
You must be signed in to change notification settings - Fork29.7k
Closed
Labels
P2Important issues not at the top of the work lista: text inputEntering text in a text field or keyboard related problemsc: regressionIt was better in the past than it is nowengineflutter/engine related. See also e: labels.found in release: 1.25Found to occur in 1.25found in release: 1.26Found to occur in 1.26has reproducible stepsThe issue has been confirmed reproducible and is ready to work onplatform-androidAndroid applications specifically
Description
Steps to Reproduce
- Create a TextField with keyboardType as TextInputType.phone, as follows:
code sample
import'package:flutter/material.dart';voidmain() {runApp(MyApp());}classMyAppextendsStatelessWidget {// This widget is the root of your application.@overrideWidgetbuild(BuildContext context) {returnMaterialApp( home:FirstRoute(), ); }}classFirstRouteextendsStatelessWidget {@overrideWidgetbuild(BuildContext context) {returnScaffold( appBar:AppBar(title:Text("Phone keyboard!")), body:ListView( children: [TextField( keyboardType:TextInputType.phone, ) ], ), ); }}
- Launch the app on Android (Emulator or Physical device)
- Focus the TextField and type anything using the on screen numpad.
- Tap the
button to switch to symbols keyboard. - While showing the symbols keyboard, tap the
button to delete what you typed
Expected results:
The TextField input to be deleted
Actual results:
The TextField input isn't deleted
flutter doctor -v
Doctor summary (to see all details, run flutter doctor -v):[✓] Flutter (Channel beta, 1.25.0-8.3.pre, on Mac OS X 10.15.7 19H2 darwin-x64, locale en-AE)[✓] Android toolchain - developfor Android devices (Android SDK version 30.0.2)[✓] Xcode - developfor iOS and macOS[✓] Chrome - developfor the web[✓] Android Studio (version 4.1)[✓] Connected device (3 available)• No issues found!
Sorry if this is a duplicate issue, I tried searching for a similar one but couldn't find any.
Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work lista: text inputEntering text in a text field or keyboard related problemsc: regressionIt was better in the past than it is nowengineflutter/engine related. See also e: labels.found in release: 1.25Found to occur in 1.25found in release: 1.26Found to occur in 1.26has reproducible stepsThe issue has been confirmed reproducible and is ready to work onplatform-androidAndroid applications specifically