-
Notifications
You must be signed in to change notification settings - Fork 30.1k
Closed
Labels
P1High-priority issues at the top of the work listHigh-priority issues 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-macBuilding on or for macOS specificallyBuilding on or for macOS specifically
Description
- Run an app on Mac with any sort of text field, such as the example code below.
- Click to focus the input.
- Quickly hammer down on some keys like "asdf".
The text will oscillate back and forth in the field and the following error will be logged over and over again in the console:
2021-03-10 15:06:45.620 sandbox[35149:395097] TSMSendMessageToUIServer: CFMessagePortSendRequest FAILED(-1) to send to port com.apple.tsm.uiserver
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Scaffold(
body: Center(
child: TextField(),
),
),
);
}
}
Not sure if I or someone else broke this recently or if it's been around awhile. CC @gspencergoog @dkwingsmt
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
P1High-priority issues at the top of the work listHigh-priority issues 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-macBuilding on or for macOS specificallyBuilding on or for macOS specifically