1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-08 11:33:31 +00:00

Added reflection service to handle sizerequest for extendedtableview. Remove footer spacing on uitableview ios renderer.

This commit is contained in:
Kyle Spearrin
2016-07-03 02:57:09 -04:00
parent ec419a2306
commit b9c823b0aa
12 changed files with 121 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
using System;
using Bit.App.Controls;
using Xamarin.Forms;
namespace Bit.App.Abstractions
{
public interface IReflectionService
{
Func<double, double, SizeRequest> GetVisualElementOnSizeRequest(ExtendedTableView tableView);
}
}