1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 00:33:20 +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

@@ -47,6 +47,9 @@ namespace Bit.App.Pages
EnableScrolling = false,
EnableSelection = false,
HasUnevenRows = true,
VerticalOptions = LayoutOptions.Start,
BackgroundColor = Color.Gray,
Margin = new Thickness(0, -1),
Root = new TableRoot
{
new TableSection()
@@ -67,6 +70,9 @@ namespace Bit.App.Pages
Intent = TableIntent.Settings,
EnableScrolling = false,
EnableSelection = true,
VerticalOptions = LayoutOptions.End,
BackgroundColor = Color.Yellow,
Margin = new Thickness(0, -1),
Root = new TableRoot
{
new TableSection()
@@ -102,7 +108,7 @@ namespace Bit.App.Pages
}, ToolbarItemOrder.Default, 0);
Title = "Edit Folder";
Content = new StackLayout { Children = { mainTable, deleteTable } };
Content = new ScrollView { Content = new StackLayout { Children = { mainTable, deleteTable } } };
ToolbarItems.Add(saveToolBarItem);
if(Device.OS == TargetPlatform.iOS)
{