mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-18 10:55:46 +01:00
21 lines
466 B
C#
21 lines
466 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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|