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

Popular posts from this blog

iis - ASP.Net Core CreatedAtAction in HttpPost action returns 201 but entire request ends with 500 -

gcc - Neither ld wrap nor LD_PRELOAD working to intercept system call -

ssh - Vagrant Windows - ssh_exchange_identification: read: Connection reset by peer -