-
-
Notifications
You must be signed in to change notification settings - Fork 194
/
Copy pathAppShell.xaml
34 lines (28 loc) · 1.02 KB
/
AppShell.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="MauiTaskListApp.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:views="clr-namespace:MauiTaskListApp.Views"
Shell.FlyoutBehavior="Disabled"
Shell.BackgroundColor="DarkGreen"
Title="Task List">
<Shell.ToolbarItems>
<ToolbarItem Text="Search"
IconImageSource="search.png"
Clicked="OnSearchClicked" />
<ToolbarItem Text="About"
Order="Secondary"
Clicked="OnAboutClicked" />
</Shell.ToolbarItems>
<TabBar>
<Tab Title="Pending Tasks"
Icon="task_list.png">
<ShellContent ContentTemplate="{DataTemplate views:PendingTasksView}" />
</Tab>
<Tab Title="Completed Tasks"
Icon="task_check.png">
<ShellContent ContentTemplate="{DataTemplate views:CompletedTasksView}" />
</Tab>
</TabBar>
</Shell>