Skip to content

Commit f091b52

Browse files
committed
wip
1 parent 9b0830e commit f091b52

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed
408 Bytes
Loading
429 Bytes
Loading

demos/TodoSQLite/Views/ListsPage.xaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
44
x:Class="TodoSQLite.Views.ListsPage"
55
Title="Todo Lists">
6+
<ContentPage.ToolbarItems>
7+
<ToolbarItem IconImageSource="wifi.png"
8+
Order="Primary"
9+
Priority="0"/>
10+
</ContentPage.ToolbarItems>
11+
612
<Grid RowDefinitions="Auto,*">
713
<Button Text="New List"
814
Clicked="OnAddClicked"

demos/TodoSQLite/Views/TodoListPage.xaml.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ public partial class TodoListPage : ContentPage
99
private readonly PowerSyncData _database;
1010
private readonly TodoList _list;
1111

12-
public string ListName => _list.Name;
13-
1412
public TodoListPage(PowerSyncData database, TodoList list)
1513
{
1614
InitializeComponent();

0 commit comments

Comments
 (0)