I am new to Flutter and I was trying do execute the example here. I just want to use the TextField widget to get some user input. The issue is that I get a \"No Material wid
The easy fix is:
Instead of using:
void main() { runApp(new MyApp()); }
You should use:
void main() => runApp( MaterialApp( home: MyApp() ) );
Hope this helps you!