【发布时间】:2021-03-21 02:26:08
【问题描述】:
代码:
CustomScrollView(
slivers: <Widget>[
SliverAppBar(
expandedHeight: 200.0,
flexibleSpace: FlexibleSpaceBar(
title: Container(color: Colors.red, child: Text("Flexible title")),
background: Image.asset("assets/chocolate.jpg", fit: BoxFit.cover),
),
),
SliverList(delegate: SliverChildListDelegate(_buildChildren())),
],
);
为什么标题中有默认填充。我使用Container 带来对比度,以便可以轻松看到边距。即使我尝试使用centerTitle: false,它也没有改变任何东西。
【问题讨论】: