Files
android/src/Core/Controls/MonoEntry.cs

15 lines
246 B
C#

namespace Bit.App.Controls
{
public class MonoEntry : Entry
{
public MonoEntry()
{
#if ANDROID
FontFamily = "RobotoMono_Regular";
#elif IOS
FontFamily = "Menlo-Regular";
#endif
}
}
}