在CustomScrollView中使用StreamBuilder和SliverLists

在CustomScrollView中使用StreamBuilder和SliverLists,第1张

在CustomScrollView中使用StreamBuilder和SliverLists

当然,这很容易,这里有一个代码示例

    class SampleStreamBuilder extends StatelessWidget {      Stream<List<String>> loadData() async* {        await Future.delayed(Duration(seconds: 3));        yield List.generate(10, (index) => "Index $index");      }      @override      Widget build(BuildContext context) {        return Scaffold(          body: StreamBuilder<List<String>>( stream: loadData(), builder: (context, snapshot) {   return snapshot.hasData       ? CustomScrollView(slivers: [  SliverList(    delegate: SliverChildBuilderDelegate((context, index) {      return ListTile(        title: Text(snapshot.data[index]),      );    }, childCount: snapshot.data.length),  )],         )       : Center(child: CircularProgressIndicator(),         ); },          ),        );      }    }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5010744.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存