1

スクロールすると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 を削除する方法に関する提案やアイデアはありますか?

よろしくお願いします。

4

1 に答える 1

0

FLutter には SliverAppBar というウィジェットがあります。まさにあなたが望むことをします!

SliverAppBar へのドキュメント リンク: Flutter Docs - SliverAppBar

編集

私は忙しい一日を過ごしていました;)。スライバーは別の種類のウィジェットです。学校のクリークのように、他の SliverWidget (これはルールではありません) と関連しているだけです (笑)。さて、以下にいくつかのコメントを付けてコードを書きます。DartPadで試すことができます。


class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData.dark().copyWith(scaffoldBackgroundColor: darkBlue),
      debugShowCheckedModeBanner: false,
      // Your code starts here
      home: Scaffold(
        // NestedScrollView to hold a Body Widget (your list) and a SliverAppBar. 
        body: NestedScrollView(
          // SingleChildScrollView to not getting overflow warning
            body: SingleChildScrollView(child: Container() /* Your listview goes here */),
            // SliverAppBar goes inside here
            headerSliverBuilder: (context, isOk) {
              return <Widget>[
                SliverAppBar(
                  expandedHeight: 150.0,
                  flexibleSpace: const FlexibleSpaceBar(
                    title: Text('Available seats'),
                  ),
                  actions: <Widget>[
                    IconButton(
                      icon: const Icon(Icons.add_circle),
                      tooltip: 'Add new entry',
                      onPressed: () { /* ... */ },
                    ),
                  ]
                )
              ];
            }),
      ),
    );
  }
}
于 2020-02-04T13:07:51.990 に答える