mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-12 10:04:43 +01:00
21 lines
467 B
C#
21 lines
467 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class MonoEntry : Entry
|
|
{
|
|
public MonoEntry()
|
|
{
|
|
switch (Device.RuntimePlatform)
|
|
{
|
|
case Device.iOS:
|
|
FontFamily = "Menlo-Regular";
|
|
break;
|
|
case Device.Android:
|
|
FontFamily = "RobotoMono_Regular.ttf#Roboto Mono";
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|