iphone - Xamarin: PresentModalView new View is not visible -


i trying navigate(presentmodalview) 1 screen in xamarin(mvvmcross framework_v2), navigation happening(can see navigation bar changing) screen not visible(previous screen visible). possible reason that. ideas?

adding code: in mainmenu

 private void actionfavouritepressed()    {     viewmodel.showinfocommand.execute ();  } 

in mainmenuviewmodal

    public mvxrelaycommand showinfocommand     {                 {             return new mvxrelaycommand(() =>             {                 this.requestnavigate<infoviewmodel>();             });         }     } 


Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

image - ClassNotFoundException when add a prebuilt apk into system.img in android -