Hello,
Try to add the blew padding and set width request in the button like following code.
<Button
x:Name="CounterBtn"
HeightRequest="40"
WidthRequest="70"
CornerRadius="20"
Padding="0,0,0,2"
BorderColor="Black"
Text="size +"
HorizontalOptions="Center"
/>
===========
Update ===========
Or you can open the style.xaml
(Resources
folder=> Styles.xaml
) to find the <Style TargetType="Button">
tag and remove <Setter Property="Padding" Value="14,10"/>
line.
Best Regards,
Leon Lu
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.