1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

redraw stack layouts on ios tableviews

This commit is contained in:
Kyle Spearrin
2018-01-03 12:18:15 -05:00
parent fa9e22730a
commit 9456f5dc31
16 changed files with 130 additions and 103 deletions

View File

@@ -163,7 +163,7 @@ namespace Bit.App.Pages
table.BottomPadding = 50;
}
var stackLayout = new StackLayout
var stackLayout = new RedrawableStackLayout
{
Orientation = StackOrientation.Vertical,
Children = { Password, table },
@@ -171,6 +171,8 @@ namespace Bit.App.Pages
Spacing = 0
};
table.WrappingStackLayout = () => stackLayout;
var scrollView = new ScrollView
{
Content = stackLayout,