【发布时间】:2021-07-27 01:31:26
【问题描述】:
我想在 Flutter web 的固定大小容器中添加滚动条,如下图链接所示。谁能给我这方面的建议?我被困在这里。我尝试过使用 Flutter_web_scrollbar 的单子滚动视图,但它不起作用。这是代码。
Container(
width: 300,
child: SingleChildScrollView(
scrollDirection: Axis.vertical,
controller: _bcontroller,
child: Column(
children: [
Container(
width: 300,
child: Row(
children: [
Text(
'${eventList.length > 0 ? i['ShipName'] : ''}',
),
],
),
),
Container(
width: 300,
child: Row(
children: [
Text(
'${eventList.length > 0 ? i[getEventDesc()].toString() : ''}',
),
],
),
),
SizedBox(
height: 10,
),
],
),
),
)
【问题讨论】:
标签: flutter flutter-web