Unverified Commit d0c4458b authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Fix whitespace and commas in flutter_driver extension_test (#48982)

parent 1fe5d3f6
...@@ -563,35 +563,36 @@ void main() { ...@@ -563,35 +563,36 @@ void main() {
children: <Widget>[ children: <Widget>[
const Text('Hello1', key: ValueKey<String>('text1')), const Text('Hello1', key: ValueKey<String>('text1')),
Container( Container(
height: 25.0, height: 25.0,
child: RichText( child: RichText(
key: const ValueKey<String>('text2'), key: const ValueKey<String>('text2'),
text: const TextSpan(text: 'Hello2') text: const TextSpan(text: 'Hello2'),
) ),
), ),
Container( Container(
height: 25.0, height: 25.0,
child: EditableText( child: EditableText(
key: const ValueKey<String>('text3'), key: const ValueKey<String>('text3'),
controller: TextEditingController(text: 'Hello3'), controller: TextEditingController(text: 'Hello3'),
focusNode: FocusNode(), focusNode: FocusNode(),
style: const TextStyle(), style: const TextStyle(),
cursorColor: Colors.red, cursorColor: Colors.red,
backgroundCursorColor: Colors.black) backgroundCursorColor: Colors.black,
),
), ),
Container( Container(
height: 25.0, height: 25.0,
child: TextField( child: TextField(
key: const ValueKey<String>('text4'), key: const ValueKey<String>('text4'),
controller: TextEditingController(text: 'Hello4') controller: TextEditingController(text: 'Hello4'),
) ),
), ),
Container( Container(
height: 25.0, height: 25.0,
child: TextFormField( child: TextFormField(
key: const ValueKey<String>('text5'), key: const ValueKey<String>('text5'),
controller: TextEditingController(text: 'Hello5') controller: TextEditingController(text: 'Hello5'),
) ),
), ),
], ],
)) ))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment