How do I remove the separator lines between each ViewCell in a TableView
I've created this little demo page illustrating the problem:
<br />
<?xml version="1.0" encoding="utf-8" ?><br />
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="App29.MainPage"></p>
<pre><code><ContentPage.Content>
<StackLayout Padding="30" VerticalOptions="Start">
<TableView Intent="Form">
<TableRoot >
<TableSection Title="TITLE">
<ViewCell>
<Label Text="TEST 1" IsVisible="False"/>
</ViewCell>
<ViewCell>
<Label Text="TEST 2" IsVisible="False"/>
</ViewCell>
</TableSection>
</TableRoot>
</TableView>
</StackLayout>
</ContentPage.Content>