I use MvvmCross library for cross platform mobile development.
I've got the page with chat lists (ChatListPageViewModel). It loads chats from the container in the Init() method.
From this page you can navigate to the page which adds new chat to container (AddChatPageViewModel).
When the chat is added, I call Close(this) in AddChatPageViewModel. So, I automatically navigate to ChatListPageViewModel, but Init() method is not called at this moment and I cannot refresh my data. How can I handle this?