Unverified Commit 6b049372 authored by Hans Muller's avatar Hans Muller Committed by GitHub

Replaced use of obsolete RaisedButton with ElevatedButton in widget_inspector_test (#66603)

parent 7d89f216
......@@ -574,7 +574,7 @@ class _TestWidgetInspectorService extends TestWidgetInspectorService {
InspectorSelectButtonBuilder selectButtonBuilder(Key key) {
return (BuildContext context, VoidCallback onPressed) {
return Material(child: RaisedButton(onPressed: onPressed, key: key));
return Material(child: ElevatedButton(onPressed: onPressed, key: key, child: null));
};
}
......
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