mirror of
https://github.com/bitwarden/android.git
synced 2024-12-29 04:18:33 +03:00
20 lines
467 B
C#
20 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;
|
|
}
|
|
}
|
|
}
|
|
}
|