1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 10:34:07 +00:00

some listview styling for iOS

This commit is contained in:
Kyle Spearrin
2019-06-20 16:02:39 -04:00
parent 223ec180fc
commit dc91624597
7 changed files with 107 additions and 18 deletions

View File

@@ -245,5 +245,13 @@ namespace Bit.App.Pages
await Navigation.PushModalAsync(new NavigationPage(page));
}
}
private void HeaderBindingContextChanged(object sender, EventArgs e)
{
if(Device.RuntimePlatform == Device.iOS && sender is ViewCell cell)
{
// cell.Height = 50;
}
}
}
}