Unverified Commit e5de16a2 authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Make the text field macrobenchmark work in debug mode (#62523)

parent 4f09f2c2
...@@ -7,7 +7,8 @@ import 'package:flutter/material.dart'; ...@@ -7,7 +7,8 @@ import 'package:flutter/material.dart';
class TextPage extends StatelessWidget { class TextPage extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Column( return Material(
child: Column(
children: <Widget>[ children: <Widget>[
Container( Container(
width: 200, width: 200,
...@@ -17,6 +18,7 @@ class TextPage extends StatelessWidget { ...@@ -17,6 +18,7 @@ class TextPage extends StatelessWidget {
), ),
), ),
], ],
),
); );
} }
} }
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