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
I have successfully plugged this navbar into my existing Maui project. I changed the main body of the AppShell.cs from the build in Shell to a simpleShell from the simple toolkit to achieve the tabbar animation. This all works well now, but now when I call the built in GoToAsync() method from any page and set the animation param = true, I no longer have the left to right animation where it takes you left to right to the new page, and then when you click the back button it takes you right to left. Any idea how to replicate this style in the simpleshell, or am I missing something?
The text was updated successfully, but these errors were encountered:
Hi @harrismasterson,
there is no default page transition in SimpleShell. You have to implement page transitions completely by yourself in SimpleShell, see documentation. Actually, everything visual has to be defined by yourself. This is both an advantage and a disadvantage of SimpleShell.
The mentioned parameter of the GoToAsync() method has currently no effect on whether the animation is played or not. Animation is always played when is defined.
I have successfully plugged this navbar into my existing Maui project. I changed the main body of the AppShell.cs from the build in Shell to a simpleShell from the simple toolkit to achieve the tabbar animation. This all works well now, but now when I call the built in GoToAsync() method from any page and set the animation param = true, I no longer have the left to right animation where it takes you left to right to the new page, and then when you click the back button it takes you right to left. Any idea how to replicate this style in the simpleshell, or am I missing something?
The text was updated successfully, but these errors were encountered: