Ion-tabs: How not to cache child routes when switching between tabs

ANSWER THAT RESOLVES THIS:
there is currently no way to do this. But according to Android/IOS guidelines, apps should not behave this way. So maybe it’s for the better. Maybe try to rethink how you are doing things, is it logical? This helped me.

OLD QUESTION:

How not to cache child routes when switching between tabs?

Currently I do:

start: tab1
click on detail button
→ tab1/detail
click on tab2 icon
→ tab2
click on tab1 icon
ACTUAL: → tab1/detail (here the /detail route got cached…)
EXPECTED: → tab1 (I want to make it not cache child routes after switching away from the current tab)

How does one achieve this?

Related questions: