android 如何在Flutter的ListView项目中使用Showcase视图?

im9ewurl  于 2023-02-14  发布在  Android
关注(0)|答案(1)|浏览(145)

如何在Flutter的ListView项目中使用Showcase视图?
我有一个列表视图,我想在这个列表的任何项目中显示一个展示。有什么方法可以在flutter中做到这一点?
我猜showcaseview包不支持ListView项。(或者我不能)
像这样;

zysjyyx4

zysjyyx41#

我解决了。
示例:

ListView.builder(
        shrinkWrap: true,
        itemBuilder: (cont, index) {
          return index == 0 ? ShowCase(key: accountItemShowCase,
                                       title: 'Başlık',
                                       description:'Açıklama', child:bankAccountItem(idx)) : bankAccountItem(index);
        },
        itemCount: items.length,
      )

相关问题