Switch to Heights based on Display Dimensions

This commit is contained in:
2019-06-25 01:59:47 -05:00
parent 20dc095515
commit 60ec28c952
9 changed files with 27 additions and 10 deletions
@@ -26,8 +26,7 @@ namespace qController
deleteLabel.GestureRecognizers.Add(deleteTapGesture);
InitItems();
//SET BINDINGS
nameLabel.SetBinding(Label.TextProperty, new Binding("name"));
@@ -63,11 +62,11 @@ namespace qController
HorizontalOptions = LayoutOptions.FillAndExpand,
Padding = 30,
Margin = new Thickness(10,10,10,10),
CornerRadius=20
CornerRadius=20,
};
f.BackgroundColor = Color.FromHex("D8D8D8");
View = f;
void InitItems()
{
nameLabel.HorizontalTextAlignment = TextAlignment.Center;