No material widget found textfield widgets require a material widget ancestor

后端 未结 6 1819
走了就别回头了
走了就别回头了 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 20:10

    Since most of the widget asks for material widget as their parent widget

    its a good practice you should use Material() or Scaffold() widget on top of the widget tree and then continue your code.

    @override
    Widget build(BuildContext context) {
      return Material(
        child: body(),
    }
    

    OR

    @override
    Widget build(BuildContext context) {
      return Scaffold(
        child: body(),
    }
    

提交回复
热议问题