I want to have a small button. The height of the button is 30. On some plattforms (Android, UWP) the text inside the button is cut off. That\'s because there is a padding betwee
Now Xamarin allows you to do something like this, in XAML:
0
Or in C#:
Button button = new Button(); button.Text = "Button"; button.Clicked += OnClicked; button.Padding = new Thickness(0, 0, 0, 0);