I want to place some child controls inside a button in my xamarin form application.I tried the following code but the child controls are not showing.
<Button>
<StackLayout Orientation="Horizontal">
<Image Source="updatesite.png" HeightRequest="25" WidthRequest="25"/>
<Label VerticalOptions="Center" Text="Update Site and Settings" FontSize="16"/>
</StackLayout>
</Button>
Please help me.