65 lines
3.5 KiB
XML
65 lines
3.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"
|
|
Title="{l:Lang myGarden, Default=My Garden}">
|
|
|
|
<Shell.SearchHandler>
|
|
<l:ItemSearchHandler TextColor="{AppThemeBinding Light={OnPlatform Android={StaticResource Primary}, iOS={StaticResource White}}, Dark={StaticResource White}}"
|
|
PlaceholderColor="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}"
|
|
Placeholder="{l:Lang flowerSearchPlaceholder, Default=Enter flower name to search...}"
|
|
Flowers="{Binding Flowers, Source={x:Reference homePage}}" DisplayMemberName="Name"
|
|
FontFamily="OpenSansRegular" FontSize="14"
|
|
SearchBoxVisibility="Collapsible" ShowsResults="True"/>
|
|
</Shell.SearchHandler>
|
|
|
|
<ContentPage.ToolbarItems>
|
|
<ToolbarItem Text="{l:Lang add, Default=Add}"/>
|
|
</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>
|
|
<VerticalStackLayout AbsoluteLayout.LayoutFlags="SizeProportional" AbsoluteLayout.LayoutBounds="0,20,1,1"
|
|
VerticalOptions="Start">
|
|
<Image Source="empty_flower.jpg" MaximumWidthRequest="200"/>
|
|
<Label Text="{l:Lang noFlower, Default=Click Add in the upper right corner to usher in the first plant in the garden.}"
|
|
HorizontalTextAlignment="Center" Margin="0,10"/>
|
|
</VerticalStackLayout>
|
|
</BindableLayout.EmptyView>
|
|
</AbsoluteLayout>
|
|
</ScrollView>
|
|
</RefreshView>
|
|
|
|
</l:AppContentPage>
|