Anyone know how to position 3 buttons in StackLayout with equal width? I have it working with Grid with
<Grid x:Name="MyGrid" Grid.Row="0" BindingContext="{x:Reference Name=Button1}" HeightRequest="{Binding Width}">
I would like to find a way to show 3 buttons on same line with same width equally without a Grid
For example all 3 buttons of equal length fitting across horizontally in StackLayout
[ Button 1 ] [ Button 222 ] [ Button 333333 ]


