How can we reuse same widget with the same state, just building it once, and rebuilding only on changes at app state model (obviously currently it is being rebuilt each time when I trigger the Navigator)?
Navigator.of(context).push( MaterialPageRoute( builder: (context) => SchedulerView(), ), );
SchedulerView is the target widget.
Thank you.