xamarin.forms - Xamarin Tab page not showing the icon for cross platform -
i creating tabbed page in xamarin using :
class uitabbedpages : tabbedpage {     public uitabbedpages()     {         var landingpage = new firstpage();         landingpage.icon = new fileimagesource() { file = fontawesome.farocket };         landingpage.title = "firstpage";          var location = new 2ndpage();         location.icon = fontawesome.fabars;         location.title = "location"          this.children.add(landingpage);         this.children.add(location);     } }   i used 2 different things show icons these both not working.
 
 
  
Comments
Post a Comment