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