Skip to content

Instantly share code, notes, and snippets.

@ionixjunior
Created April 27, 2016 02:07
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 ionixjunior/e28e60d7d6a611afc2ec8e4dc6719b13 to your computer and use it in GitHub Desktop.
Save ionixjunior/e28e60d7d6a611afc2ec8e4dc6719b13 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:control="clr-namespace:Core.Controls;assembly=Core"
x:Class="Core.Views.HomeView"
Title="Home">
<ContentPage.Content>
<TableView Intent="Menu">
<TableRoot>
<TableSection>
<control:CustomImageCell ImageSource="location.png" Text="Localização" />
<control:CustomImageCell ImageSource="settings.png" Text="Configurações" />
<control:CustomImageCell ImageSource="email.png" Text="E-mail" />
</TableSection>
</TableRoot>
</TableView>
</ContentPage.Content>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment