This commit is contained in:
2026-01-26 23:40:05 +08:00
parent 1ec60e3cbb
commit 24bf9dc3dd
7 changed files with 163 additions and 188 deletions

View File

@@ -15,11 +15,11 @@ export component Demo inherits Window {
title: "Slint Shadcn UI - Task Manager Demo";
background: Theme.colors.background;
// Window size settings - reduced for lower memory usage
min-width: 800px;
min-height: 600px;
preferred-width: 1000px;
preferred-height: 700px;
// Window size settings - optimized for lower memory usage
min-width: 600px;
min-height: 400px;
preferred-width: 800px;
preferred-height: 600px;
// Application state
in-out property <string> new-task-title: "";