62 lines
2.9 KiB
XML
62 lines
2.9 KiB
XML
<models:PageView
|
|
xmlns:models="using:FoxTube.Core.Models"
|
|
NavigationCacheMode="Enabled"
|
|
x:Class="FoxTube.Views.Home"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:toolkit="using:Microsoft.Toolkit.Uwp.UI.Controls"
|
|
xmlns:controls="using:FoxTube.Controls"
|
|
mc:Ignorable="d"
|
|
Header="Home">
|
|
|
|
<Pivot>
|
|
<PivotItem Header="Recommended">
|
|
<Grid>
|
|
<RefreshContainer>
|
|
<ScrollViewer Padding="5,0">
|
|
<controls:ItemsGrid x:Name="recommendedItems"/>
|
|
</ScrollViewer>
|
|
</RefreshContainer>
|
|
<toolkit:Loading IsLoading="False" x:Name="recommendedLoading" VerticalContentAlignment="Center">
|
|
<toolkit:Loading.Background>
|
|
<AcrylicBrush BackgroundSource="HostBackdrop" TintColor="{ThemeResource SystemColorBackgroundColor}" TintOpacity=".5"/>
|
|
</toolkit:Loading.Background>
|
|
<ProgressRing Height="100" Width="100" IsActive="True"/>
|
|
</toolkit:Loading>
|
|
</Grid>
|
|
</PivotItem>
|
|
<PivotItem Header="Trending">
|
|
<Grid>
|
|
<RefreshContainer>
|
|
<ScrollViewer Padding="5,0">
|
|
<controls:ItemsGrid x:Name="trendingItems"/>
|
|
</ScrollViewer>
|
|
</RefreshContainer>
|
|
<toolkit:Loading IsLoading="False" x:Name="trendingLoading" VerticalContentAlignment="Center">
|
|
<toolkit:Loading.Background>
|
|
<AcrylicBrush BackgroundSource="HostBackdrop" TintColor="{ThemeResource SystemColorBackgroundColor}" TintOpacity=".5"/>
|
|
</toolkit:Loading.Background>
|
|
<ProgressRing Height="100" Width="100" IsActive="True"/>
|
|
</toolkit:Loading>
|
|
</Grid>
|
|
</PivotItem>
|
|
<PivotItem Header="Subscriptions">
|
|
<Grid>
|
|
<RefreshContainer>
|
|
<ScrollViewer Padding="5,0">
|
|
<controls:ItemsGrid x:Name="subscriptionsItems"/>
|
|
</ScrollViewer>
|
|
</RefreshContainer>
|
|
<toolkit:Loading IsLoading="False" x:Name="subscriptionsLoading" VerticalContentAlignment="Center">
|
|
<toolkit:Loading.Background>
|
|
<AcrylicBrush BackgroundSource="HostBackdrop" TintColor="{ThemeResource SystemColorBackgroundColor}" TintOpacity=".5"/>
|
|
</toolkit:Loading.Background>
|
|
<ProgressRing Height="100" Width="100" IsActive="True"/>
|
|
</toolkit:Loading>
|
|
</Grid>
|
|
</PivotItem>
|
|
</Pivot>
|
|
</models:PageView>
|