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
views.Register(
new ViewMap<ShellControl, ShellViewModel>(),
new ViewMap<MainPage, MainViewModel>(),
new ViewMap<FirstPage, FirstViewModel>(),
new ViewMap<SecondPage, SecondViewModel>(),
new ViewMap<ThirdPage, ThirdViewModel>()
);
routes
.Register(
new RouteMap("", View: views.FindByViewModel<ShellViewModel>(),
Nested: new RouteMap[]
{
new RouteMap("First", View: views.FindByViewModel<FirstViewModel>(), IsDefault: true),
new RouteMap("Main", View: views.FindByViewModel<MainViewModel>(),
Nested: new RouteMap[]
{
new RouteMap("Second", View: views.FindByViewModel<SecondViewModel>(), IsDefault: true),
new RouteMap("Third", View: views.FindByViewModel<ThirdViewModel>()),
}
),
}));
This discussion was converted from issue #797 on May 07, 2024 07:30.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
What would you like to be added:
A way to configure smoother transitions on navigation. Especially on section navigation.
Why is this needed:
It looks ugly at times. See example:
![android](https://user-images.githubusercontent.com/17461593/194432960-40e6bca2-d14f-4668-b2cf-96926e4b1bc3.gif)
android
iOS
![ios](https://user-images.githubusercontent.com/17461593/194432967-3f2ec642-9e10-454d-b55c-c80e75e344fb.gif)
Sample navigationflicker.zip
For which Platform:
Anything else we need to know?
In this sample, routes are configured like this
Beta Was this translation helpful? Give feedback.
All reactions