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

Use tableview on about page for credits selections. Break settings page out into individual table views so we can use footer labels.

This commit is contained in:
Kyle Spearrin
2016-07-25 22:24:40 -04:00
parent 948dc9511f
commit 193ef8c995
2 changed files with 92 additions and 22 deletions

View File

@@ -122,13 +122,8 @@ namespace Bit.App.Pages
};
rateCell.Tapped += RateCell_Tapped;
var table = new ExtendedTableView
var table = new CustomTable
{
NoFooter = true,
VerticalOptions = LayoutOptions.Start,
EnableScrolling = false,
Intent = TableIntent.Menu,
HasUnevenRows = true,
Root = new TableRoot
{
new TableSection("Security")
@@ -136,22 +131,50 @@ namespace Bit.App.Pages
LockOptionsCell,
FingerprintCell,
PinCell
},
new TableSection
}
}
};
var table2 = new CustomTable
{
Root = new TableRoot
{
new TableSection("Account")
{
changeMasterPasswordCell,
changeEmailCell
},
}
}
};
var table3 = new CustomTable
{
Root = new TableRoot
{
new TableSection("Manage")
{
foldersCell,
syncCell
},
}
}
};
var table4 = new CustomTable
{
Root = new TableRoot
{
new TableSection("Current Session")
{
lockCell,
logOutCell
},
}
}
};
var table5 = new CustomTable
{
Root = new TableRoot
{
new TableSection("Other")
{
aboutCell,
@@ -186,10 +209,15 @@ namespace Bit.App.Pages
var stackLayout = new StackLayout
{
Children = { table, rateLabel },
Children = { table, table2, table3, table4, table5, rateLabel },
Spacing = 0
};
stackLayout.LayoutChanged += (sender, args) =>
{
rateLabel.WidthRequest = stackLayout.Bounds.Width - rateLabel.Bounds.Left * 2;
};
Title = AppResources.Settings;
Content = new ScrollView { Content = stackLayout };
}
@@ -383,5 +411,17 @@ namespace Bit.App.Pages
return "Immediately";
}
}
private class CustomTable : ExtendedTableView
{
public CustomTable()
{
NoFooter = true;
VerticalOptions = LayoutOptions.Start;
EnableScrolling = false;
Intent = TableIntent.Menu;
HasUnevenRows = true;
}
}
}
}