<?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