From f72bad120538b0a9414444297dee412cd345971f Mon Sep 17 00:00:00 2001 From: talksik Date: Fri, 11 Apr 2025 12:38:04 -0700 Subject: [PATCH] feat: support switch component --- AppWindow.qml | 2 ++ gallery/Main.qml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/AppWindow.qml b/AppWindow.qml index 57d7b7f..675e140 100644 --- a/AppWindow.qml +++ b/AppWindow.qml @@ -15,6 +15,8 @@ ApplicationWindow { brightText: Theme.muted text: Theme.foreground button: Theme.accent + midlight: Theme.card + light: Theme.secondaryText } title: qsTr("Flowy") diff --git a/gallery/Main.qml b/gallery/Main.qml index 65ff0e9..8e080a8 100644 --- a/gallery/Main.qml +++ b/gallery/Main.qml @@ -47,5 +47,7 @@ AppWindow { } } } + + Switch {} } }