Make sure stepper buttons are always the same size (#2995) fixes #2919

This commit is contained in:
Jason Smith 2018-06-11 04:00:32 -07:00 коммит произвёл Rui Marinho
Родитель 44182014ad
Коммит 4bc56b4eff
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -36,6 +36,7 @@ namespace Xamarin.Forms.Platform.Android
if (e.OldElement == null)
{
_downButton = new AButton(Context) { Text = "-", Gravity = GravityFlags.Center, Tag = this };
_downButton.SetHeight((int)Context.ToPixels(10.0));
_downButton.SetOnClickListener(StepperListener.Instance);