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

Null checks in iOS views on value changed. Segue to proper route on lock screen dismissal. Adjusted add site modal transition.

This commit is contained in:
Kyle Spearrin
2016-07-25 23:40:25 -04:00
parent 3dff2cc6d0
commit dc69b75cb9
5 changed files with 13 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ namespace Bit.iOS.Core.Views
private void Switch_ValueChanged(object sender, EventArgs e)
{
ValueChanged(this, null);
ValueChanged?.Invoke(this, null);
}
public UISwitch Switch { get; set; } = new UISwitch();