1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-19 09:43:27 +00:00

EC-295 Added swipe to copy on vault login items

This commit is contained in:
Federico Andrés Maccaroni
2022-07-04 11:17:47 -03:00
parent a6ddc2496f
commit 2be5208b8f
13 changed files with 332 additions and 137 deletions

View File

@@ -0,0 +1,20 @@
using Xamarin.Forms;
namespace Bit.App.Controls
{
public class IconFontImageSource : FontImageSource
{
public IconFontImageSource()
{
switch (Device.RuntimePlatform)
{
case Device.iOS:
FontFamily = "bwi-font";
break;
case Device.Android:
FontFamily = "bwi-font.ttf#bwi-font";
break;
}
}
}
}