I'm using the new ImageButton control introduced with XF 3.4 to create circular image button. Unfortunately it doesn't work on Android.
it looks like the rounding on Android will need to be achieved by utilizing canvas.drawcircle inside the Draw method. So the paint object and all the parameters for that will need to be setup and used instead of base.draw
<ImageButton Grid.Row="0" Grid.Column="0"
Source="{Binding ProfileImage, Converter={StaticResource PathToImageConverter}}"
CornerRadius="50"
HorizontalOptions="Center" VerticalOptions="Center"
HeightRequest="100" WidthRequest="100">
</ImageButton>
Or run the ControlGallery Issue G1724 which demonstrates a circular button.
See a circular image
Image is rectangular
Android

UWP

Need this fix badly :(
Plus some mmaterial shadow underneath will be awesome!
I want to live Sambot!!!
When will this fix be available?
@samhouts Why does this say closed when it hasn't come out in the past 3 releases?
Issues are closed when they are merged, not when they are released. This was merged into master, so it will be part of 4.5.0. @PureWeen is this fix suitable for a backport to 4.4.0?
@samhouts Yes! I'll backport it to 4.4.0 so it'll be part of the next SR of 4.4.0
You both are awesome. @samhouts thank you for the describing the difference between the two.
@PureWeen @samhouts Thanks you guys for your hard work. Fix works like a charm.