如何在 Flutter 的 ListView 项目中使用 Showcase View?

How can I use the Showcase View in a ListView Item in Flutter?

如何在 Flutter 的 ListView 项目中使用 Showcase View?

我有一个 ListView,我想在此列表的任何项目中显示一个展示。有什么办法可以做到这一点吗?

我猜 showcaseview 包不支持 ListView 项目。 (或者我不能)

像这样;

我已经解决了。

示例:

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,
      )