feat: completed base feature set for the app

This commit is contained in:
2026-07-18 20:25:17 +02:00
parent e9d6c70eb0
commit 638202b96c
46 changed files with 4486 additions and 541 deletions

View File

@@ -168,7 +168,27 @@ pub fn view(
.into(),
);
// New project button
// Open and create project actions
items.push(
button(
row![
text("")
.size(14)
.shaping(Shaping::Advanced)
.color(Color::from_rgb(0.55, 0.75, 0.95)),
text(t(locale, "projectSelector.openProject"))
.size(12)
.shaping(Shaping::Advanced),
]
.spacing(6),
)
.on_press(Message::RequestOpenProject)
.padding([4, 8])
.width(Length::Fill)
.style(new_project_btn)
.into(),
);
items.push(
button(
row![