-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listplatform-iosiOS applications specificallyiOS applications specificallyteam-iosOwned by iOS platform teamOwned by iOS platform team
Description
Is there an existing issue for this?
- I have searched the existing issues
- I have read the guide to filing a bug
Steps to reproduce
- Create an empty project with a text field (or just use flutter/dev/integration_tests/ios_platform_view_tests
- Type a word with typo, then hit space. If the word is auto corrected, edit it and hit space again
- Hit backspace, the auto-correction prompt shows up. Notice that the buttons are not tappable.
Note that this is for both hardware and software keyboards.
Expected results
Buttons should be tappable
Actual results
Buttons not tappable
Code sample
import 'package:flutter/material.dart';
class MyApp extends StatelessWidget {
const MyApp({super.key});
late TextEditingController _controller;
@override
void initState() {
super.initState();
_controller = TextEditingController();
_controller.text = 'Flutter Text Field';
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Platform View Focus Tests'),
),
body: Column(
children: <Widget>[
TextField(
controller: _controller,
),
],
),
);
}
}
Screenshots or Video
Logs
NA
Flutter Doctor output
NA
Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listplatform-iosiOS applications specificallyiOS applications specificallyteam-iosOwned by iOS platform teamOwned by iOS platform team