您需要使用
setState()方法来更改状态。例如:
Expanded( child: mainMenuWidget( image: "assets/images/home/more-sadaqah.png", title: translations.text("total_sadaqah"), subtitle: sadaqah, onTap: () { setState(() { showText3 = true; }); }, ))
当您已经在使用条件状态进行更改时,它将更新ui。
//Give Widgetwidget.showText3 ? Container() : this.GiveHistory(context),
但这仅在您更改一个类的状态时有效。我看到您有2个单独的班级,您需要更多高级状态管理。因此,您可以维护
其他类的状态。尝试使用provider.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)