Setting Text property of RadButton like this:
this.myButton.Text = "4" + Environment.NewLine + "Totals Files";
And applying HorizontalContentAlignment to "Center" leads to different result on Android and Windows:
Background property is not applied on Android and WinUI. On Mac and iOS works as expected.
<telerik:RadButton x:Name="button" Text="hello telerik button">
<telerik:RadButton.Background>
<LinearGradientBrush EndPoint="0,1">
<GradientStop Offset="0.0" Color="Violet" />
<GradientStop Offset="1.0" Color="DarkRed" />
</LinearGradientBrush>
</telerik:RadButton.Background>
</telerik:RadButton>
When I try to change the background image on a button click, the image is not changed
<telerik:RadButton Grid.Row="6" BackgroundImage="image.png" VerticalOptions="Center" HorizontalOptions="Center" WidthRequest="100" HeightRequest="100" Clicked="RadButton_Clicked"/>
private void RadButton_Clicked(object sender, EventArgs e)
{
(sender as Telerik.Maui.Controls.RadButton).BackgroundImage = "image2.png";
}