I am able to simulate a modal view controller by displaying the MvxViewController with MvxModalPresentation attribute, but it doesn't respond to setting its content size or the views height. The presentation is always full frame height minus few pixels - see screenshot. There is an attribute PreferredContentSize, but in the MvvmCross documentation it states that it works on iPad only.
[MvxModalPresentation(
ModalPresentationStyle = UIModalPresentationStyle.FormSheet,
WrapInNavigationController = true
)]
public partial class LogoutViewController : BaseViewController<LogoutViewModel> ...
I tried setting all kinds of UIModalPresentationStyle - that doesn't help, the view is presented in exact same way. Is there a way to actually implement a modal view in MVVMCross as of 2021? This seems like a trivial task to do, yet there's nothing on the web..