I am using
SliverAppBar
to scroll the appbar when content scrolls in myflutter
app but as soon as I scroll the list statusbar color turns transparent.I want statusbar in its place and with the default primary color which is blue in my case.
See: Video
Here is code:
Scaffold(
CustomScrollView(
slivers: <Widget>[
SliverAppBar(
title: Text("Home"),
floating: false,
pinned: false,
snap: false,
),
SliverList(
delegate: SliverChildListDelegate(SOME_LIST_DATA),
),
],
)
)