我有一个顶部导航栏。选项卡主体之一包含Streambuilder,该Streambuilder具有在其生成器中调用的功能。我不希望在第一次单击选项卡时构建StreamBuilder,但是在单击选项卡后,我希望Streambuilder再次激活。我正在考虑在构建器中使用逻辑...
builder: (context, snapshot) {
if (snapshot.hasData && tabCondition) { //not sure how to implement tab conditionality
play();
}
return Container();
})