Currently I have these 2 buttons on top of each other
Unfortunately, Visual Studio doesn't support visual editing in Xamarin, so I have to edit the XAML code by hand, which I can't do easily
Can somebody help me figure out how to get these 2 buttons to be side by side instead of on top of each other
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:CustomRenderer;assembly=CustomRenderer"
x:Class="CustomRenderer.MapPage">
<StackLayout Margin="0,0,0,0">
<Button Text="Add items" Clicked="OnAddItemsClicked"/>
<Button Text="Add other" Clicked="OnAddOtherClicked"/>
<local:CustomMap x:Name="customMap"
MapType="Street" />
</StackLayout>
</ContentPage>
