My current project involves using CSS styles with Xamarin Forms. I have a grid with buttons that look like this: https://i.sstatic.net/awLWc.png
StackLayout {
background-color: #1e1e1e;
color: #ffffff;
}
Button{
background-color: #2d2d30;
font-family: Consolas;
font-size: 24;
margin: 0;
}
Here is some XAML code:
<Grid>
<Grid.ColumnDefinitions>
/*...*/
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
/*...*/
</Grid.RowDefinitions>
<Button/>
<Button/>
/*...*/
</Grid>
Is there a way to remove the gaps between these buttons? I would appreciate any help with this issue.