スクロールするとAppbarが消える投稿(Instagramなど)のフィードを作成しようとしています。これが私のコードです:
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.pink[100]
),
body: postImagesWidget()
);
}
Widget postImagesWidget() {
return
FutureBuilder(
future: _future,
builder: ((context, AsyncSnapshot<List<DocumentSnapshot>> snapshot) {
return LiquidPullToRefresh(
onRefresh: _refresh, // refresh callback
child: ListView.builder(
itemCount: snapshot.data.length,
itemBuilder: ((context, index) =>
SinglePost(
list: snapshot.data,
index: index,
followingUser: followingUser,
currentUser: currentUser,
fetch: fetchFeed,
)))
);
}),
);}
ご覧のとおり、現時点では通常の AppBar を使用しており、投稿の作成には Listview.builder を使用しています。SliverAppBarについて聞いて、自分のセットアップに実装しようとしましたが、ListView.builder で動作させることができませんでした。
スクロール時に AppBar を削除する方法に関する提案やアイデアはありますか?
よろしくお願いします。