52 lines
2.5 KiB
XML
52 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<l:AppContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:l="clr-namespace:Blahblah.FlowerApp"
|
|
xmlns:ctl="clr-namespace:Blahblah.FlowerApp.Controls"
|
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
|
x:Class="Blahblah.FlowerApp.HomePage"
|
|
x:Name="homePage"
|
|
x:DataType="l:HomePage">
|
|
|
|
<ContentPage.ToolbarItems>
|
|
<ToolbarItem Text="Filter"/>
|
|
</ContentPage.ToolbarItems>
|
|
|
|
<ContentPage.Resources>
|
|
<DataTemplate x:Key="flowerTemplate" x:DataType="ctl:FlowerClientItem">
|
|
<Frame HasShadow="False" Padding="0"
|
|
CornerRadius="12" BorderColor="Transparent"
|
|
AbsoluteLayout.LayoutFlags="XProportional"
|
|
AbsoluteLayout.LayoutBounds="{Binding Bounds}">
|
|
<Grid RowDefinitions="*, 30" ColumnDefinitions="Auto, *"
|
|
RowSpacing="6" ColumnSpacing="4">
|
|
<Image Grid.ColumnSpan="2" Source="{Binding Cover}"/>
|
|
<Frame Grid.Row="1" HasShadow="False" Margin="0" Padding="0"
|
|
WidthRequest="30" HeightRequest="30" CornerRadius="15"
|
|
BorderColor="Transparent" BackgroundColor="LightGray"
|
|
VerticalOptions="Center"></Frame>
|
|
<Label Grid.Column="1" Grid.Row="1" Text="{Binding Name}"
|
|
VerticalOptions="Center"/>
|
|
</Grid>
|
|
</Frame>
|
|
</DataTemplate>
|
|
</ContentPage.Resources>
|
|
|
|
<RefreshView Refreshing="RefreshView_Refreshing" IsRefreshing="{Binding IsRefreshing}"
|
|
BindingContext="{x:Reference homePage}">
|
|
<ScrollView>
|
|
<AbsoluteLayout Margin="12"
|
|
BindableLayout.ItemsSource="{Binding Flowers}"
|
|
BindableLayout.ItemTemplate="{StaticResource flowerTemplate}">
|
|
<BindableLayout.EmptyView>
|
|
<Label Text="{l:Lang nothing, Default=Nothing here...}"
|
|
HorizontalTextAlignment="Center"
|
|
AbsoluteLayout.LayoutFlags="SizeProportional"
|
|
AbsoluteLayout.LayoutBounds="0,20,1,1"/>
|
|
</BindableLayout.EmptyView>
|
|
</AbsoluteLayout>
|
|
</ScrollView>
|
|
</RefreshView>
|
|
|
|
</l:AppContentPage>
|