Created
April 27, 2016 02:07
-
-
Save ionixjunior/e28e60d7d6a611afc2ec8e4dc6719b13 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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