I have a screen that is made up of 1 state and many nested views in that state
state 1:
view 1:
view 1.a:
view 1.b:
view 1.c:
view 2:
view 3:
view 3.a:
view 3.b:
view 4:
Each view and sub view has its own controller and its own resolved data. How can I tell a view or subview to reload its controller and resolved data without reloading the rest of the views? If that is not possible, how should the application be structured?
I looked into using states and child states, but could not figure out how to get them all to load when the parent state was triggered.