I am looking for an example or documentation to work with fragments in the current mvvmcross version. I found a lot of information about the old versions but I am confused how I should implement it now.
The best information so far I have found is in this article: http://gregshackles.com/presenters-in-mvvmcross-navigating-android-with-fragments/
But it is over one year old and I think there is already a newer/better way to do it.
What I want is having a single Activity(like in an SPA or having a MainView) this activity should contain one or two fragment and on a button click I want to navigate/change to a different fragment and the current one on the backstack for navigation. Or is it recommend to use only activities for navigation and not implementing a SPA?
Thanks for your help! Timo