No material widget found textfield widgets require a material widget ancestor

后端 未结 6 1817
走了就别回头了
走了就别回头了 2021-02-01 19:49

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

6条回答
  •  灰色年华
    2021-02-01 19:53

    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*)
    }
    

提交回复
热议问题