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
......@@ -566,8 +566,8 @@ void main() {
height: 25.0,
child: RichText(
key: const ValueKey<String>('text2'),
text: const TextSpan(text: 'Hello2')
)
text: const TextSpan(text: 'Hello2'),
),
),
Container(
height: 25.0,
......@@ -577,21 +577,22 @@ void main() {
focusNode: FocusNode(),
style: const TextStyle(),
cursorColor: Colors.red,
backgroundCursorColor: Colors.black)
backgroundCursorColor: Colors.black,
),
),
Container(
height: 25.0,
child: TextField(
key: const ValueKey<String>('text4'),
controller: TextEditingController(text: 'Hello4')
)
controller: TextEditingController(text: 'Hello4'),
),
),
Container(
height: 25.0,
child: TextFormField(
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