Xamarin.Plugins
Xamarin.Plugins copied to clipboard
Icons do not show up for xamarin forms UWP app
I am able to see the icons when i run the app in android emulator, but not for UWP.
I have added these nuget packages to the UWP project.

And I am initializing the modules in App.xaml.cs OnLaunched method.
I know the readme file says that UWP support is coming soon, but the sample project has this implemented for UWP xamarin forms app.
Thanks
Turns out it is working but only when i use IconButton. This line works: <iconize:IconButton FontSize="20" Text="md-access-alarm" TextColor="Red" WidthRequest="48" BackgroundColor="Transparent" />
This does not, it works for android but for UWP nothing is displayed: <iconize:IconImage Icon="md-access-alarm" HeightRequest="20" WidthRequest="20" IconColor="Red" />
Is icon image not supported for xamarin forms UWP?
And have you tried IconToolbarItem ? Seems not working on UWP
@ChrisProlls I confirm that IconToolbarItem doesn't work on UWP. Did you found a solution?
I have a workaround only for UWP and I use static image to render my icon.