mirror of
https://github.com/bitwarden/android.git
synced 2025-01-06 00:07:54 +03:00
21 lines
498 B
C#
21 lines
498 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class MiButton : Button
|
|
{
|
|
public MiButton()
|
|
{
|
|
Padding = 0;
|
|
switch (Device.RuntimePlatform)
|
|
{
|
|
case Device.iOS:
|
|
FontFamily = "Material Icons";
|
|
break;
|
|
case Device.Android:
|
|
FontFamily = "MaterialIcons_Regular.ttf#Material Icons";
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|