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

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

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -