1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-20 18:23:51 +00:00

Implemented specific entry padding for android api 21.

This commit is contained in:
Kyle Spearrin
2016-08-23 23:15:28 -04:00
parent 043a4122b4
commit a7ba21f2f9
2 changed files with 25 additions and 3 deletions

View File

@@ -23,6 +23,11 @@ namespace Bit.App.Controls
Margin = new Thickness(0, int.MaxValue, 0, 0)
};
Entry.TextChanged += Entry_TextChanged;
if(Device.OS == TargetPlatform.Android)
{
Label.TextColor = Color.Black;
}
}
private void Entry_TextChanged(object sender, TextChangedEventArgs e)