mobileScreen.show hide animation?

Is it possible to hide the animation when calling MobileScreen.show(self)?

Posting here for others to see the solution.
Using iOSDesignExtensions

And it works:

In a button:

self.SetAnimationsEnabledXC(False) //disable animations

Dim s As new Screen2
s.show(self)

In Screen2.Activated:

self.SetAnimationsEnabledXC(True) //enable animations

3 Likes

This works perfectly.