当我想把广告之间的列表视图我想每2卡添加广告,但只是前两张卡显示和广告,而其他列表不显示
ListView.builder(
itemCount: foundUser.length,
itemBuilder: (BuildContext context, index) {
if (index % 2 == 0 && index > 0) {
return const CustomBannerAd();
}
return CustomCard();
}
我想帮助你请把广告之间的列表视图
1条答案
按热度按时间yv5phkfx1#
你可以计算广告指数和项目指数来实现你想要的。下面是一个简化的例子,其中有两个项目之间的广告。
输出: