You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This has worked great before, including the subpages' navigation Task Init() method being called. However if I switch to the new NavigationService way of handling stuff, the new Task Initialize() method is never called.
How could I adopt this to the new NavigationService?
Configuration
Version: 5.x
Platform:
iOS
Android
WPF
UWP
The text was updated successfully, but these errors were encountered:
Are you using the new MvxIosViewPresenter that comes with MvvmCross 5? I recommend you to look at how it is implemented in Playground TestProject. That sample app uses both the new presenter and the new navigation service.
Have you read the documentation pages? That being said, I'll need more details to be able to help you.
Yes, we are using the new MvxIosViewPresenter. However our old method was using the N+1 samples, which was still the old navigation pattern. Using the global NavigationService to push these child views solved the issue. Thanks!
In my app, I use an
MvxTabBarViewController
as the root view of my app, loading three views into it using their ViewModels.We're rebasing our previous 4.x code to 5.x, and ran into a slight issue regarding this transition with the way the tabs are created.
Currently we have a
BaseTabBarView
expanding theMvxTabBarViewController
with the following function:This has worked great before, including the subpages' navigation
Task Init()
method being called. However if I switch to the new NavigationService way of handling stuff, the newTask Initialize()
method is never called.How could I adopt this to the new NavigationService?
Configuration
Version: 5.x
Platform:
The text was updated successfully, but these errors were encountered: