Complete TodoApp sample application with: - App.xaml/cs: Colors and styles for light/dark themes - TodoListPage: Task list with theme toggle switch - NewTodoPage: Form to create new tasks - TodoDetailPage: Edit task details with delete option - TodoItem.cs/TodoService.cs: Data model and service - SVG icons for save, delete, and add actions Theme switching via toggle on main page applies app-wide. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
709 B
XML
25 lines
709 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<RootNamespace>TodoApp</RootNamespace>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<UseMaui>true</UseMaui>
|
|
<ApplicationTitle>Todo App</ApplicationTitle>
|
|
<ApplicationId>com.openmaui.todoapp</ApplicationId>
|
|
<ApplicationVersion>1.0</ApplicationVersion>
|
|
<SupportedOSPlatformVersion>9.0</SupportedOSPlatformVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\OpenMaui.Controls.Linux.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<MauiImage Include="Resources\Images\*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|