Looking at this xamarin-forms-samples/Templates/ControlTemplates/SimpleTheme/
I have a control template in the resource dictionary:
<ResourceDictionary>
<ControlTemplate x:Key="TealTemplate">
<Grid> <!-- omitted detail here -->
<ContentPresenter Grid.Row="1" Grid.ColumnSpan="2" />
If I then look a the actual page:
<ContentView x:Name="contentView" Padding="0,20,0,0" ControlTemplate="{StaticResource TealTemplate}">
<StackLayout VerticalOptions="CenterAndExpand">
<Label Text="Welcome to the app!" HorizontalOptions="Center" />
When I look at the previewer for the page, I only see the Control Template content, I don't see the label
Is this a bug? Intended behaviour? Or is there a way of seeing the page including control template elements and the content of the page itself.