Skip to content

Instantly share code, notes, and snippets.

@jfversluis
Last active November 30, 2018 10:26
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save jfversluis/aa4d8599499edb1b66d2b4de75fc89e2 to your computer and use it in GitHub Desktop.
TableView with TableSections
<?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:TableSectionTextXolorSample" x:Class="TableSectionTextXolorSample.MainPage">
<TableView>
<TableSection Title="Section 1">
<TextCell Text="Who lives in a pineapple under the sea?" />
<TextCell Text="SpongeBob Squarepants!" />
<TextCell Text="Absorbent and yellow and porous is he" />
<TextCell Text="SpongeBob Squarepants!" />
</TableSection>
<TableSection Title="Section 2">
<TextCell Text="If nautical nonsense be something you wish" />
<TextCell Text="SpongeBob Squarepants!" />
<TextCell Text="Then drop on the deck and flop like a fish" />
<TextCell Text="SpongeBob Squarepants!" />
</TableSection>
</TableView>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment