0

When navigating between views the transition is represented as a sliding from right to left using MVVMCross by calling

ShowViewModel<MyViewModel>();

Is there a way to change the transition to slide from left to right or top to bottom?

Thanks!

doorman
  • 15,707
  • 22
  • 80
  • 145

1 Answers1

2

You didn't say which platform, I assume it's iOS. Does this help:

MvvmCross ViewModel transition from the left

Community
  • 1
  • 1
WriteEatSleepRepeat
  • 3,083
  • 3
  • 33
  • 56
  • 1
    Thanks, but I already tried this. Unfortunately UIViewAnimationOptions does not support sliding which is strange since sliding is quite common for transitions. – doorman Dec 05 '14 at 18:34