1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 08:43:21 +00:00

cached images

This commit is contained in:
Kyle Spearrin
2017-02-15 21:56:02 -05:00
parent d96b279beb
commit d2d8ee504d
15 changed files with 99 additions and 19 deletions

View File

@@ -6,6 +6,7 @@ using Bit.App.Controls;
using Bit.App.Resources;
using Xamarin.Forms;
using XLabs.Ioc;
using FFImageLoading.Forms;
namespace Bit.App.Pages
{
@@ -127,9 +128,11 @@ namespace Bit.App.Pages
Text = detailText
};
var image = new Image
var image = new CachedImage
{
Source = imageSource
Source = imageSource,
WidthRequest = 44,
HeightRequest = 44
};
var grid = new Grid