FaceLoginApp: PaginaBienvenido.xaml
<?xml version="1.0" encoding="utf-8" ?> | |
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
x:Class="FaceLoginApp.Paginas.PaginaBienvenido"> | |
<ContentPage.Content> | |
<StackLayout BackgroundColor="White"> | |
<Label Text="Bienvenido" TextColor="Black" FontSize="Large" Margin="15"/> | |
<StackLayout Padding="15"> | |
<Image x:Name="imagen" WidthRequest="300" HeightRequest="300" /> | |
</StackLayout> | |
<Label x:Name="lblMensaje" TextColor="Black" FontSize="Medium" Margin="15"/> | |
</StackLayout> | |
</ContentPage.Content> | |
</ContentPage> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment