Skip to content

Instantly share code, notes, and snippets.

@TBertuzzi
Created February 18, 2022 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TBertuzzi/2534ac5e89b0278d56c63e8e5b7ab3aa to your computer and use it in GitHub Desktop.
Save TBertuzzi/2534ac5e89b0278d56c63e8e5b7ab3aa to your computer and use it in GitHub Desktop.
MultiLingua
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:resource="clr-namespace:XamarinFormsMultiLinguagem.Resources"
NavigationPage.HasBackButton="False"
x:Class="XamarinFormsMultiLinguagem.BemVindoPage">
<ContentPage.Content>
<StackLayout>
<Frame BackgroundColor="#2196F3" Padding="24" CornerRadius="0">
<Label Text="{x:Static resource:AppResources.BemVindo}" HorizontalTextAlignment="Center" TextColor="White" FontSize="36"/>
</Frame>
<Button Text="{x:Static resource:AppResources.Voltar}"
Clicked="btnVoltarClick"
BackgroundColor="Black"
TextColor="White"/>
</StackLayout>
</ContentPage.Content>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment