Hi I am trying to build a login screen in flutter but I am getting below error when opening it.
No material widget found textfield widgets require a mater
Wrap the loginpage function with a Scaffold or a MaterialApp
Widget LoginPage() { return new Scaffold( body: Container( *the rest of your code* ), ); }
or
Widget LoginPage() { return new MaterialApp( home: Container( *the rest of your code* ), ); }