Reputation: 91
I just started learning Xamarin Forms. I noticed in some open source projects there are images named like logo.png
, [email protected]
and [email protected]
. Normally how does these images were created?
Upvotes: 1
Views: 93
Reputation: 11105
Checkout Resizetizer NT which will size icons automatically for you.
SharedImage
<ItemGroup>
<SharedImage Include="xamagon.svg" BaseSize="60,60" />
</ItemGroup>
Checkout the link for more detailed steps.
Upvotes: 3