How to Customize Space Between Stroke and Image in MAUI Avatar View?
This article explains how to customize the space between the stroke and image or avatar in .NET MAUI Avatar View. This can be achieved by adjusting the WidthRequest
, HeightRequest
, and CornerRadius
properties of the Border control that wraps the Avatar View
. Below is an example of how to implement this in your application.
XAML
<StackLayout Spacing="5">
<Label Text="Circle Shape Avatar:" HorizontalOptions="Center"/>
<Border x:Name="circleBorder" WidthRequest="80" HeightRequest="80"
Stroke="Black" StrokeThickness="2">
<Border.StrokeShape>
<RoundRectangle x:Name="circleRadius" CornerRadius="40"/>
</Border.StrokeShape>
<core:SfAvatarView ContentType="AvatarCharacter" AvatarShape="Circle"/>
</Border>
...
</StackLayout>
By modifying the WidthRequest
, HeightRequest
, and CornerRadius
values, you can effectively control the spacing between the stroke and the avatar image to achieve the desired visual effect.
Output
Download the complete sample from GitHub
Conclusion
I hope you enjoyed learning how to customize space between stroke and image in MAUI Avatar View.
You can refer to our .NET MAUI Avatar View’s feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!