如何在Flutter中处置的页面中继续动画?

问题描述 投票:0回答:1

基本上,我在我的主页上有一堆ListTile,其中代表一些计时器。当我按下一个ListTile时,它的导航器会转到另一个页面,有一个选项来设置一个定时器和一个很酷的时钟动画。现在当我回到主页时,动画和那个完整的页面被处理掉了。但我希望即使我们关闭页面,定时器也能继续。我可以得到一个好的建议来实现这个想法吗?

enter image description here

enter image description here

flutter flutter-animation flutter-navigation flutter-timer
1个回答
1
投票

在你的有状态的widget中,包含一个像这样的mixin!

class _ClassNameState extends State<ClassName> with AutomaticKeepAliveClientMixin<Upload> {
//code
}
© www.soinside.com 2019 - 2024. All rights reserved.