1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-19 01:33:22 +00:00
Files
mobile/src/App/Controls/IconFontImageSource.cs
2022-07-04 11:17:47 -03:00

21 lines
479 B
C#

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