mirror of
https://github.com/bitwarden/android.git
synced 2024-12-28 03:48:31 +03:00
20 lines
454 B
C#
20 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;
|
|
}
|
|
}
|
|
}
|
|
}
|