I've got a problem: In my Xamarin Forms project I want to show an Icon in the top left corner, but the image is only via url available.
This is my Code:
var toolbaricon = new ToolbarItem();
toolbaricon.Icon = "urlToImage";
ToolbarItems.Add(toolbaricon);
The Item gets added to the ToolbarItems, but doesn't show up. But if I use a local Image (image from drawable (android)) it works fine.
Is there a solution for this?
Best Regards