-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
flutter/engine
#11390Labels
a: text inputEntering text in a text field or keyboard related problemsEntering text in a text field or keyboard related problemsplatform-webWeb applications specificallyWeb applications specifically
Description
Steps to Reproduce
- Put a
TextFieldin aflutter_webproject - Build and serve with
webdev serve(make sure your firewall is open for the served address). - Open the resulting website from an iOS device or simulator (Chrome or Safari).
- Tap on the field
- No keyboard is displayed to the user
Sample
import 'package:flutter_web/material.dart';
void main() {
runApp(IssueApp());
}
class IssueApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Material(
child: MaterialApp(
theme: ThemeData(
platform: TargetPlatform.android,
),
title: 'Issue',
home: Page(),
));
}
}
class Page extends StatelessWidget {
@override
Widget build(BuildContext context) {
return TextField();
}
}aryzhov, myrjola, HudsonAfonso, wasiliysoft, marcelogustavoreis and 7 more
Metadata
Metadata
Assignees
Labels
a: text inputEntering text in a text field or keyboard related problemsEntering text in a text field or keyboard related problemsplatform-webWeb applications specificallyWeb applications specifically