SVG Images & Icon Packs
Last updated
Last updated
Wisej.NET Hybrid supports the automatic conversion of SVG images into PNG images for use in the Device's tab bar, toolbar, or any other control using SkiaSharp.
The SVG images are automatically resized and colored based on the properties of the control.
Use SVG images from one of the many available icon packs in Wisej.NET in the Hybrid application.
Device.TabBar.Items = new TabBarItem[]
{
new TabBarItem
{
Title = "Home",
ImageSource = Wisej.Ext.MaterialDesign.Icons.HomeButton
},
new TabBarItem
{
Title = "Messages",
ImageSource = Wisej.Ext.MaterialDesign.Icons.EmailInbox
},
new TabBarItem
{
Title = "Search",
ImageSource = Wisej.Ext.MaterialDesign.Icons.SearchingMagnifyingGlass
},
new TabBarItem
{
Title = "Settings",
ImageSource = Wisej.Ext.MaterialDesign.Icons.SettingsCogwheelButton
}
};
Device.TabBar.Visible = true;