FlutterのSliverAppBar内でListView.builderを使用する方法
まず、次のようなウィジェットツリーを構築します。CustomScrollView( slivers: <Widget>[ SliverAppBar( // SliverAppBarの設定を行う // ... ), SliverList( delegate: SliverChildBuilderDelegate( (BuildContext context, int index) { // ListView.builderのアイテムを作成する // ... >>More