This example demonstrates how to create image button in Xamarin.Forms with text and custom view. Please refer KB links for more details,
How to create Xamarin.Forms image button
You can create an image button by using the ImageSource property that is used to set the image in button. In addition, you have to set the value of the ShowIcon property as true.
The following code example shows how to use ImageSource to instantiate an image button.
<button:SfButton ShowIcon="True" BackgroundColor="DeepSkyBlue"
HeightRequest="50" WidthRequest="95" CornerRadius="5" ImageSource="alarm.png"/>
The Content property on our button is used to add any content view inside the button. You can use this Content property to create an image button.
The following code example shows how to use Content to instantiate an image button.
<button:SfButton BackgroundColor="DeepSkyBlue" CornerRadius="5" HeightRequest="45" WidthRequest="95">
<button:SfButton.Content>
<Grid Margin="5">
<Image Source="alarm.png" />
</Grid>
</button:SfButton.Content>
</button:SfButton>
You can also create an image button with text using the properties Text and ImageSource.
The following code example shows how to create an image button with text and image.
<button:SfButton ImageSource="alarm.png"
HeightRequest="50" WidthRequest="95" TextColor="Black"
ShowIcon="True" BackgroundColor="DeepSkyBlue" Text="Alarm"
CornerRadius="5" />
You can also change the alignment of the image in the button using the ImageAlignment property as shown in the example below.
<button:SfButton ImageSource="alarm.png" ImageAlignment="End" HeightRequest="45" WidthRequest="95"
TextColor="Black" ShowIcon="True" BackgroundColor="DeepSkyBlue"
Text="Alarm" CornerRadius="5" />
See Also:
How to set image in button background
How to create image button with label
How to create button with label and image alignment
Also refer our feature tour page to know more features available in our button.
If you are facing path too long exception when building this example project, close Visual Studio and rename the repository to short and build the project.