I have implemented a silver app bar with background image on my flutter app. i want to make title of the silver app bar to hide when silver app bar on expanded mode. i only want to display the title when it is collapsed how can i achieve this behavior?
SliverAppBar(
expandedHeight: 250.0,
floating: false,
pinned: true,
title: Text("Coporate News"),
elevation: 8,
flexibleSpace: FlexibleSpaceBar(
centerTitle: true,
title: Text(""),
background: Stack(
children: [
Container(
height: 400,
child: Image.network(
news['url'],
fit: BoxFit.cover,
),
),
.......

