Skip to content

Instantly share code, notes, and snippets.

@pictos
Last active March 12, 2019 18:23
Show Gist options
  • Save pictos/607f653ba5fd827f22e328d255a8ff0d to your computer and use it in GitHub Desktop.
Save pictos/607f653ba5fd827f22e328d255a8ff0d to your computer and use it in GitHub Desktop.
<?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:local="clr-namespace:VisualTest"
x:Class="VisualTest.MainPage"
Visual="Material">
<ContentPage.BindingContext>
<local:MainViewModel/>
</ContentPage.BindingContext>
<StackLayout Padding="10">
<Label Text="Visual Teste"
HorizontalTextAlignment="Center"
FontAttributes="Bold"
TextColor="Black"/>
<Entry Text="{Binding Item}"
HorizontalTextAlignment="Center"
Placeholder="Seu item aparecera aqui"
HeightRequest="60"/>
<Picker ItemsSource="{Binding Items}"
SelectedIndex="{Binding Item}"
Title="Selecione um cumprimento"
Visual="Test"/>
</StackLayout>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment