Внутри flexibleSpace
у меня есть кнопки «Next» и «Prev», как вы можете видеть ниже, текст кнопки «Next» и «Prev» скрывается при прокрутке, но стрелки вперед и назад не скрываются. Я хочу, чтобы они прятались при прокрутке.
Это мой код,
SliverAppBar(
backgroundColor: selectedColor ?? Colors.blue,
expandedHeight: 112,
snap: true,
pinned: false,
floating: true,
forceElevated: true,
actions: <Widget>[
IconButton(
icon: Icon(Icons.event),
onPressed: () {
DateTime now = DateTime.now();
_selectDate(context, now);
})
],
flexibleSpace: selectedTitle != null ? SafeArea(
child: Column(
children: <Widget>[
Container(
height: kToolbarHeight,
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
selectedTitle?.toUpperCase() ?? '',
style: Theme
.of(context)
.textTheme
.title
.copyWith(fontSize: 16, color: Colors.white),
),
SizedBox(
height: 2,
),
isWeekly
? SizedBox(
height: 0,
width: 0,
)
: Text(
displayDate ?? '',
style: Theme
.of(context)
.textTheme
.caption
.copyWith(fontSize: 10, color: Colors.white),
),
SizedBox(
height: 2,
),
Text(
selectedParshaNodeModel?.parshaName ?? '',
style: Theme
.of(context)
.textTheme
.subtitle
.copyWith(fontSize: 14, color: Colors.white),
),
],
),
),
Expanded(
child: Container(
height: kToolbarHeight,
width: MediaQuery
.of(context)
.size
.width,
color: Colors.white,
child: Row(
children: <Widget>[
Expanded(
child:
FlatButton(
onPressed: () {}
,
child: Row(
crossAxisAlignment:
CrossAxisAlignment.center,
mainAxisAlignment:
MainAxisAlignment.spaceAround,
children: <Widget>[
Icon(Icons.arrow_back,
color: Colors.grey),
Text(
'Prev',
style: Theme
.of(context)
.textTheme
.subhead
.copyWith(color: Colors.grey),
)
],
))),
Expanded(
child:
FlatButton(
onPressed: (){},
child: Row(
mainAxisAlignment:
MainAxisAlignment.spaceAround,
crossAxisAlignment:
CrossAxisAlignment.center,
children: <Widget>[
Text('Next',
style: Theme
.of(context)
.textTheme
.subhead
.copyWith(color: Colors.grey)),
Icon(
Icons.arrow_forward,
color: Colors.grey,
),
],
)))
],
),
),
)
],
),
) : Container(),
),