If you want to switch between two different widgets on the same location in flutter? Use the below example code:
1 2 3 4 5 6 | AnimatedCrossFade( duration: const Duration(seconds: 3), firstChild: FirstChild(), secondChild: SecondChild(), crossFadeState: _first ? CrossFadeState.showFirst : CrossFadeState.showSecond, ) |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.