How to make a round button using xamarin.forms

0

This code is not working inside a Grid as layout

<Button x:Name="btnTeste" Text="Click Me!!" Grid.Row="3" Grid.Column="1" BackgroundColor="Black" BorderRadius="50" HeightRequest="100" WidthRequest="100" TextColor="White"/>

What should I do to make it round. I tried to do a round BoxView too and could not do it.

    
asked by anonymous 29.01.2018 / 20:05

1 answer

0

The BorderRadius in XAML does this. Ex:

<Button BorderRadius="10"/>
    
25.07.2018 / 17:38