i want to switch between two screens continously, i used AnimatedCrossFade but it switch them once,
home: const AnimatedCrossFade(
duration: Duration(seconds: 2),
crossFadeState: CrossFadeState.showSecond,
firstChild: WelcomeScreenIron(),
secondChild: WelcomeScreenViper(),
),
what i need is once i run my app the two first screen appears then the second repeatdly without pressing any buttons how can i do thi using animation?