So you have these methods to remove transition animation between pages.
Task PushAsync(Page page, bool animated)
Task PushModalAsync(Page page, bool animated)
Task<Page> PopAsync(bool animated)
Task<Page> PopModalAsync(bool animated)
However, setting the animation to false will not do anything to back page transition animation (when I click the physical button in my Android phone). How can I remove the back page transition animation?
I want to remove the page transition animation due to I have a low entry phone. Its performance is not that good and caused the page transition animation to be "jagged" and not smooth.