1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-18 01:03:24 +00:00

helper for empty header value

This commit is contained in:
Kyle Spearrin
2017-11-20 22:39:49 -05:00
parent e3e833d8c0
commit cfe34355bd
17 changed files with 46 additions and 29 deletions

View File

@@ -8,6 +8,7 @@ using Plugin.Connectivity.Abstractions;
using Plugin.Settings.Abstractions;
using Xamarin.Forms;
using XLabs.Ioc;
using Bit.App.Utilities;
namespace Bit.App.Pages
{
@@ -77,19 +78,19 @@ namespace Bit.App.Pages
EnableSelection = false,
Root = new TableRoot
{
new TableSection(" ")
new TableSection(Helpers.GetEmptyTableSectionTitle())
{
UppercaseCell,
LowercaseCell,
NumbersCell,
SpecialCell
},
new TableSection(" ")
new TableSection(Helpers.GetEmptyTableSectionTitle())
{
NumbersMinCell,
SpecialMinCell
},
new TableSection(" ")
new TableSection(Helpers.GetEmptyTableSectionTitle())
{
AvoidAmbiguousCell
}