Skip to content

Instantly share code, notes, and snippets.

@sjehutch
Last active February 7, 2021 22:03
Show Gist options
  • Save sjehutch/26e3fe7a59465c128f1f3a35f990f70b to your computer and use it in GitHub Desktop.
Save sjehutch/26e3fe7a59465c128f1f3a35f990f70b to your computer and use it in GitHub Desktop.
ff
<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