SideMenu for mvvmCross
问题 Tying to implement side menu for Xamarin.iOS app, but got warning in console: mvx:Warning: 0.25 No sidemenu found. To use a sidemenu decorate the viewcontroller class with the 'MvxPanelPresentationAttribute' class and set the panel to 'Left' or 'Right'. Steps 1) Create base class for menu (from sample) public class BaseMenuViewController<T> : MvxViewController<T>, IMvxSidebarMenu where T : class, IMvxViewModel { public virtual UIImage MenuButtonImage => UIImage.FromBundle("burger"); public