In my app I create a button using FlatButton.icon
(Flutter docs). Now I'm trying to find the button during testing.
I've tried
find.byType(MaterialButton); // -> zero widgets
find.byType(FlatButton); // -> zero widget
The strange thing is that I can find the text for the button
find.text('my button text');
and I can also find the icon for the button
find.byType('Icon');
I'm not sure what I should be searching for to find the button.