mirror of
https://github.com/bitwarden/mobile
synced 2026-02-07 03:53:15 +00:00
21 lines
470 B
C#
21 lines
470 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class MiLabel : Label
|
|
{
|
|
public MiLabel()
|
|
{
|
|
switch (Device.RuntimePlatform)
|
|
{
|
|
case Device.iOS:
|
|
FontFamily = "Material Icons";
|
|
break;
|
|
case Device.Android:
|
|
FontFamily = "MaterialIcons_Regular.ttf#Material Icons";
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|