I want to put a frame and a button side by side and adjoining but when i do that, there is always a space between them and i can't remove it. Here is the code i wrote:
<StackLayout Margin="0,740,0,0" Orientation="Horizontal" >
<Frame BackgroundColor="#BD3AB8" HeightRequest="20" WidthRequest="380">
<Label Text="TOPLAM: 50 TL" TextColor="White" FontSize="17" />
</Frame>
<Button Text="SİPARİŞİ ONAYLA" TextColor="White" WidthRequest="160" FontSize="17" BackgroundColor="Purple" Padding="0"/>
</StackLayout>
and the result looks like this:
][1]
i want to remove that space that showed with arrow. How can i solve this problem?