不正确使用ParentDataWidget

时间:2020-07-30 03:32:07

标签: flutter listview dart widget singlechildscrollview

我得到对ParentDataWidget的错误使用。问题

我尝试在SingleChildScrollView中使用Column,但是没有用,我将其替换为ListView

这是我的代码

    return Scaffold(
      body: Directionality(
        textDirection: TextDirection.rtl,
        child: WillPopScope(
          onWillPop: pressBack,
          child: SizedBox(
            width: MediaQuery.of(context).size.width,
//              height: 0.9* MediaQuery.of(context).size.height,
            child: Padding(
              padding: const EdgeInsets.all(12.0),
              child: ListView(
                        children: <Widget>[
                           moreCoding(),
                     ],
               ),
            ),
          ),
        ),
      ),
    );

1 个答案:

答案 0 :(得分:0)

问题是SingleChildScrollView或ListView内的Expanded Widget