Hi David,
Greetings from Syncfusion.
We have analyzed your query and we can achieve your requirement using the SfButton Content property by adding image icon style as per your requirement. Please refer the below code example.
XAML:
|
…
<buttons:SfButton>
<buttons:SfButton.Content>
<Grid ColumnDefinitions="Auto, *, Auto" ColumnSpacing="16" Padding="16">
<Image Grid.Column="0" HorizontalOptions="Start" WidthRequest="30" HeightRequest="30" Source="github_icon.png"/>
<Label Grid.Column="1" HorizontalOptions="StartAndExpand" VerticalOptions="Center"
Text="Github" FontSize="20"/>
<Image Grid.Column="2" HorizontalOptions="End" WidthRequest="20" HeightRequest="30" Source="chevron_icon.png"/>
</Grid>
</buttons:SfButton.Content>
</buttons:SfButton> |
Also, we have prepared a sample based on your requirement. Please download the sample from the below link.
Output:
Please let us know if you need any further assistance on this.
Regards,
Devakumar D