Add a Calendar view on the right side

This commit is contained in:
Vyn 2024-10-29 15:02:46 +01:00
parent a80515ff90
commit f1ac8a42d1
18 changed files with 406 additions and 130 deletions

View file

@ -2,6 +2,7 @@ import { Backend } from "Backend.slint";
import { Button, VerticalBox, CheckBox } from "std-widgets.slint";
import { SideBar } from "./components/SideBar.slint";
import { MainView } from "MainView.slint";
import { SettingsWindow } from "SettingsWindow.slint";
import { Palette } from "@selenite";
export component AppWindow inherits Window {
@ -11,8 +12,6 @@ export component AppWindow inherits Window {
max-height: 4000px; // needed, otherwise the window wants to fit the content (on Swaywm)
default-font-size: 16px;
in-out property<string> test;
HorizontalLayout {
SideBar {}
MainView {
@ -22,4 +21,4 @@ export component AppWindow inherits Window {
}
export { Backend, Palette } // Export to make it visible to the C++ backend
export { Backend, Palette, SettingsWindow } // Export to make it visible to the C++ backend