【发布时间】:2021-01-22 09:15:46
【问题描述】:
我正在尝试将SliverList 与SliverAppBar 重叠几个像素。我希望FlexibleSpaceBar 中的图像位于我的SliverList 的半径范围内。我只能得到半径。无法将SliverList 重叠到SliverAppBar.
return CustomScrollView(
physics: BouncingScrollPhysics(),
slivers: [
SliverAppBar(
backgroundColor: Colors.transparent,
elevation: 0.0,
expandedHeight: getProportionateScreenHeight(350),
automaticallyImplyLeading: false,
pinned: true,
stretch: true,
leading: Container(
padding: EdgeInsets.fromLTRB(8.0, 8.0, 0.0, 0.0),
child: SizedBox(
height: getProportionateScreenWidth(40),
width: getProportionateScreenWidth(40),
child: FlatButton(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(60),
),
color: Colors.white,
padding: EdgeInsets.zero,
child: Icon(Icons.arrow_back_ios),
onPressed: () => Navigator.pop(context),
),
),
),
actions: <Widget>[
Container(
padding: EdgeInsets.fromLTRB(0.0, 8.0, 8.0, 0.0),
child: SizedBox(
height: getProportionateScreenWidth(40),
width: getProportionateScreenWidth(40),
child: FlatButton(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(60),
),
color: Colors.white,
padding: EdgeInsets.zero,
child: Icon(Icons.more_vert),
onPressed: () {}
),
),
),
],
flexibleSpace: FlexibleSpaceBar(
//title: Text(_event.Title),
centerTitle: true,
stretchModes: [
StretchMode.zoomBackground
],
background: Stack(
fit: StackFit.expand,
children: <Widget>[
Image.asset('assets/images/events/sunset.jpg', fit: BoxFit.cover),
DecoratedBox(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment(0.0, 0.5),
end: Alignment(0.0, 0.0),
colors: <Color>[
Color(0x60000000),
Color(0x00000000),
],
),
),
),
]
)
)
),
SliverList(
delegate: SliverChildListDelegate([
Column(
children: [
Container(
padding: EdgeInsets.only(top: getProportionateScreenHeight(20), bottom: getProportionateScreenHeight(100)),
child: EventDescription(event: _event),
decoration: BoxDecoration(
color: Color(0xFFF5F6F9),
borderRadius: BorderRadius.only(
topLeft: Radius.circular(40),
topRight: Radius.circular(40),
),
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.5),
spreadRadius: 5,
blurRadius: 7,
offset: Offset(0, 0), // changes position of shadow
),
],
)
),
],
)
]),
)
]
);
【问题讨论】:
-
这是回答你的问题吗? stackoverflow.com/questions/54856511/…
-
嗨@yellowgray,我试过了,但它不起作用
标签: android android-studio flutter dart flutter-layout