Last active
February 7, 2021 22:03
-
-
Save sjehutch/26e3fe7a59465c128f1f3a35f990f70b to your computer and use it in GitHub Desktop.
ff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<StackLayout Orientation="Vertical" Padding="30" Spacing="40"> | |
<BoxView HeightRequest="10"/> | |
<Image HorizontalOptions="Center" WidthRequest="300" Source="maco.jpg"/> | |
<Frame BackgroundColor="#BF043055" HasShadow="False"> | |
<StackLayout Orientation="Vertical" Spacing="10"> | |
<Entry x:Name="Email" Text="{Binding Email}" Placeholder="Email" | |
PlaceholderColor="White" HeightRequest="40" | |
Keyboard="Email" | |
TextColor="White"/> | |
<Entry x:Name="Password" Text="{Binding Password}" Placeholder="Senha" | |
PlaceholderColor="White" HeightRequest="40" | |
IsPassword="True" | |
TextColor="White"/> | |
</StackLayout> | |
</Frame> | |
<Button Command="{Binding SubmitCommand}" Text="Login" TextColor="White" | |
FontAttributes="Bold" FontSize="Large" HorizontalOptions="FillAndExpand" | |
BackgroundColor="#088da5" /> | |
</StackLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment