0

我得到不正确使用 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(),
                     ],
               ),
            ),
          ),
        ),
      ),
    );

4

1 回答 1

0

问题是 SingleChildScrollView 或 ListView 内部的扩展小部件

于 2020-07-30T04:16:11.327 回答