1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-03 17:13:50 +00:00
Files
mobile/src/App/Controls/FaLabel.cs

21 lines
454 B
C#

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