1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00
Files
mobile/src/App/Controls/IconLabel.cs
2022-01-21 10:31:03 +01:00

21 lines
449 B
C#

using Xamarin.Forms;
namespace Bit.App.Controls
{
public class IconLabel : Label
{
public IconLabel()
{
switch (Device.RuntimePlatform)
{
case Device.iOS:
FontFamily = "bwi-font";
break;
case Device.Android:
FontFamily = "bwi-font.ttf#bwi-font";
break;
}
}
}
}