Open
Description
I'm not sure if this is an issue on the Flutter or DartPad side.
Description
It's not possible to edit the code if an EditableText widget has focus.
Steps to reproduce
- Create a Flutter app with a TextField/CupertinoTextField (or load a TextField demo).
- Click on the text field.
- Then try to edit the code.
import 'package:flutter/material.dart';
void main() {
runApp(
const MaterialApp(
home: Scaffold(
body: Center(child: TextField()),
),
),
);
}