import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Expansion Tile Splash'),
centerTitle: true,
),
body: TextField(),
),
),
);
}
- in iOS, turn on voice control
- tap text field to start editing
- speak "type how are you"
- speak "delete line"
expect: the entire line is deleted
actual: only the word "you" was deleted
expect: the entire line is deleted
actual: only the word "you" was deleted