flutter No material widget found textfield widgets require a material widget ancestor

时间:2023-03-08 22:57:29
flutter No material widget found textfield widgets require a material widget ancestor
Error states that TextField widgets require a Material widget ancestor. Simply wrapping your whole loginWidget into Scaffold will solve the problem.

Widget LoginPage() {
return new Scaffold(body: *your whole code*)
}