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
Just wrap your widget with Material like this:
@override Widget build(BuildContext context) { return Material( child: YourAwesomeWidget(), }