我有这个Flutter应用程序,当MapView放在具有ListView的堆栈中时,我无法滚动它。
请参见以下示例:
Stack(
children: <Widget>[
GoogleMap(),
Align(
alignment: Alignment(0, -1),
child: ListView(
physics: NeverScrollableScrollPhysics(),
children: <Widget>[
Container(
height: 100,
width: double.infinity,
color: Colors.red,
),
Container(
height: 100,
width: double.infinity,
color: Colors.blue,
)
],
),
),
],
);
答案 0 :(得分:0)
我必须将p em {
padding-left: 10px;
border-left: 10px solid blue;
}
添加到shrinkWrap: true
。