<ScrollView VerticalScrollBarVisibility="Never">
    <StackLayout Margin="25,20,25,80" Spacing="15">

        <!--#region Title - Label-->
        <Label Margin="0,5"
               Text="{language:Translation Key=TimesheetTotalsTitle}"
               TextColor="{x:Static statics:Colours.DarkGray}"
               TextTransform="Uppercase"
               FontSize="16"
               FontAttributes="Bold"
               VerticalTextAlignment="Center"
               HorizontalTextAlignment="Center"/>
        <!--#endregion-->

        <!--#region Timesheet Totals - Treeview-->
        <treeview:SfTreeView x:Name="TotalsTreeview"
                             AutoExpandMode="AllNodesExpanded"
                             ChildPropertyName="Children"
                             ExpanderWidth="0"
                             Indentation="0"
                             ItemHeight="30"
                             SelectionMode="None"
                             IsEnabled="False"
                             ScrollBarVisibility="Never">
            <treeview:SfTreeView.ItemTemplate>
                <DataTemplate>
                    <Grid ColumnSpacing="10">
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="*"/>
                            <ColumnDefinition Width="50"/>
                        </Grid.ColumnDefinitions>
                        <Label Padding="{Binding INDENT, Converter={StaticResource PaddingConverter}}"
                               FontSize="12"
                               FontAttributes="{Binding BOLD, Converter={StaticResource FontAttributesConverter}}"
                               Text="{Binding INDENTED_NAME}"
                               TextColor="{x:Static statics:Colours.DarkGray}"
                               VerticalTextAlignment="Center"/>
                        <Label Grid.Column="1"
                               Padding="0,0,2,0"
                               FontSize="12"
                               FontAttributes="Bold"
                               Text="{Binding Value}"
                               TextColor="{x:Static statics:Colours.DarkGray}"
                               VerticalTextAlignment="Center"
                               HorizontalTextAlignment="End"/>
                    </Grid>
                </DataTemplate>
            </treeview:SfTreeView.ItemTemplate>
        </treeview:SfTreeView>
        <!--#endregion-->

    </StackLayout>
</ScrollView>