Skip to content

Commit

Permalink
#49 RadioButton Vertically alignment imrpoved
Browse files Browse the repository at this point in the history
  • Loading branch information
enisn committed Nov 11, 2018
1 parent cf6ee93 commit 1770bc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InputKit/Shared/Controls/RadioButton.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public class RadioButton : StackLayout

Label lblEmpty = new Label { TextColor = GlobalSetting.BorderColor, Text = "", VerticalTextAlignment = TextAlignment.Center, HorizontalTextAlignment = TextAlignment.Center, FontSize = GlobalSetting.Size, };
Label lblFilled = new Label { TextColor = GlobalSetting.Color, Text = "", IsVisible = false, Scale = 0.9, VerticalTextAlignment = TextAlignment.Center, HorizontalTextAlignment = TextAlignment.Center, FontSize = GlobalSetting.Size * .92 };
Label lblText = new Label { Text = "", VerticalTextAlignment = TextAlignment.Center, VerticalOptions = LayoutOptions.CenterAndExpand, TextColor = GlobalSetting.TextColor, FontSize = GlobalSetting.FontSize, FontFamily = GlobalSetting.FontFamily };
Label lblText = new Label { Margin = new Thickness(0,5,0,0), Text = "", VerticalTextAlignment = TextAlignment.Center, VerticalOptions = LayoutOptions.CenterAndExpand, TextColor = GlobalSetting.TextColor, FontSize = GlobalSetting.FontSize, FontFamily = GlobalSetting.FontFamily };
private bool _isDisabled;

///-----------------------------------------------------------------------------
Expand Down

0 comments on commit 1770bc5

Please sign in to comment.