chore: scaffolding

This commit is contained in:
electria 2026-08-03 23:36:47 -07:00
commit 802200db51
Signed by: electria
SSH key fingerprint: SHA256:8LlB3ucPbBHqozqkhsNbaV5oG3SlzzqUj8FZDL6IPQs
4 changed files with 1565 additions and 59 deletions

View file

@ -2,11 +2,19 @@ use iced::{Color, Element, Renderer, Task, Theme, application, theme, widget};
enum Message {}
struct State {}
enum Mode {
Focused(usize),
Gallery,
}
struct State {
mode: Mode,
}
impl State {
fn new() -> Self {
Self {}
Self {
mode: Mode::Gallery,
}
}
fn update(&mut self, message: Message) -> Task<Message> {
Task::none()