-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
flutter/engine
#30004Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work lista: desktopRunning on desktopRunning on desktopa: text inputEntering text in a text field or keyboard related problemsEntering text in a text field or keyboard related problemsplatform-windowsBuilding on or for Windows specificallyBuilding on or for Windows specifically
Description
Follow up from #86179 - all dead keys available on US International keyboards now work except for the circumflex accent.
Steps to Reproduce
- Run flutter create text_field_test.
- Update main.dart as in the Code sample below.
- Set the keyboard layout to English United States - International
- Type text with circumflex dead keys in the text field
Expected results: Dead key accented letter with circumflex can be entered
Actual results: Circumflex accent characters are entered (repeated twice), followed by letters
Code sample
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 MaterialApp(
title: 'Flutter Demo',
theme: ThemeData( primarySwatch: Colors.blue),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text(widget.title)),
body: const Center(
child: TextField(
maxLines: 10,
),
),
);
}
}
Logs
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel master, 2.6.0-12.0.pre.505, on Microsoft Windows [Version 10.0.19043.1288], locale en-US)
[X] Android toolchain - develop for Android devices
X Unable to locate Android SDK.
Install Android Studio from: https://developer.android.com/studio/index.html
On first launch it will assist you in installing the Android SDK components.
(or visit https://flutter.dev/docs/get-started/install/windows#android-setup for detailed instructions).
If the Android SDK has been installed to a custom location, please use
`flutter config --android-sdk` to update to that location.
[√] Chrome - develop for the web
[√] Visual Studio - develop for Windows (Visual Studio Community 2019 16.11.5)
[!] Android Studio (not installed)
[√] VS Code, 64-bit edition (version 1.61.2)
[√] Connected device (3 available)
! Doctor found issues in 2 categories.
Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work lista: desktopRunning on desktopRunning on desktopa: text inputEntering text in a text field or keyboard related problemsEntering text in a text field or keyboard related problemsplatform-windowsBuilding on or for Windows specificallyBuilding on or for Windows specifically
