To try to create a screen that has an image at the end of the screen and above it is the login buttons, type this here:
withtheyellowrectanglebelowandthebuttonsaboveit.butIcannotdoit,seetheresult:
andhere'sthecode:
<ContentPagexmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="vanhack.mobile.StartPageView"
BackgroundImage="bg.png">
<StackLayout>
<Label Text="Tentando Fazer um layout bonito!" VerticalOptions="Center"></Label>
<StackLayout VerticalOptions="EndAndExpand">
<RelativeLayout >
<Button Text="Log In With e-mail" Command="{Binding EmailLoginCommand}"></Button>
<Image Source="Rectangle2.png" />
<Image Source="linkedin.png" />
</RelativeLayout>
</StackLayout>
</StackLayout>
How to settle?