【发布时间】:2022-01-02 03:55:57
【问题描述】:
我正在尝试使用 SingleChildScrollView 使我的主屏幕可滚动,但它没有按预期工作
这是我的代码:
SingleChildScrollView(
child: Column(
children: [
Row(...),
Container(
child: Column(
children: [
Text(...),
SizedBox(
child: ListView.builder(
scrollDirection: Axis.vertical,
shrinkWrap: true,
itemBuilder: (context, count) {
return Container(
height: 300,
child: Text("hi there $count"),
);
},
itemCount: 4,
),
)
],
),
)
],
),
);
【问题讨论】:
-
用
list view包装
标签: android flutter flutter-layout flutter-android flutter-scrollbar