Hi there!
I am using the RadButton in an UWP app with Xamarin Forms.
The title should be left aligned and he button should have a padding.
In Debug Mode, everything looks fine but in release mode both padding and alignment are ignored. (See screenshots attached)
This is my code in a clean Telerik template:
<StackLayout Spacing="5" Padding="0,20,0,0" BackgroundColor="LightGray"> <telerikInput:RadButton Text="Left Aligned With Padding" HorizontalContentAlignment="Start" Padding="20" BackgroundColor="White" /> <telerikInput:RadButton Text="Left Aligned With Padding" HorizontalContentAlignment="Start" Padding="20" BackgroundColor="White" /> <telerikInput:RadButton Text="Left Aligned With Padding" HorizontalContentAlignment="Start" Padding="20" BackgroundColor="White" /> </StackLayout>