mirror of
https://github.com/bitwarden/mobile
synced 2026-01-05 18:13:36 +00:00
view page login info with copy buttons
This commit is contained in:
21
src/App/Controls/FaButton.cs
Normal file
21
src/App/Controls/FaButton.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user