Hello,
I have a question about the use of presenters in mvvmcross.
We have a core project, which is in charge of doing the "ShowViewModel" to show the views on each platform. The problem we have, is that when using Fragment in Android, to show a screen 2-3 ShowsViewModel are made ... (one for the activity and the rest for the fragment that compose it) and this gives us conflicts in iOS, since that the same screen is only a xib.
Is there any way to solve this? We tried to create the screens in iOS through the use of nested xibs, but we did not get the same result as in Android.
Thank you very much.