We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b0830e commit f091b52Copy full SHA for f091b52
demos/TodoSQLite/Resources/Images/wifi.png
408 Bytes
demos/TodoSQLite/Resources/Images/wifi_off.png
429 Bytes
demos/TodoSQLite/Views/ListsPage.xaml
@@ -3,6 +3,12 @@
3
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4
x:Class="TodoSQLite.Views.ListsPage"
5
Title="Todo Lists">
6
+ <ContentPage.ToolbarItems>
7
+ <ToolbarItem IconImageSource="wifi.png"
8
+ Order="Primary"
9
+ Priority="0"/>
10
+ </ContentPage.ToolbarItems>
11
+
12
<Grid RowDefinitions="Auto,*">
13
<Button Text="New List"
14
Clicked="OnAddClicked"
demos/TodoSQLite/Views/TodoListPage.xaml.cs
@@ -9,8 +9,6 @@ public partial class TodoListPage : ContentPage
private readonly PowerSyncData _database;
private readonly TodoList _list;
- public string ListName => _list.Name;
-
public TodoListPage(PowerSyncData database, TodoList list)
15
{
16
InitializeComponent();
0 commit comments