GTK App reactive switch and better UI

This commit is contained in:
dav 2023-12-09 12:38:54 -08:00
parent 29eedb7e9a
commit f7f59fd24d
20 changed files with 875 additions and 361 deletions

View file

@ -0,0 +1,20 @@
use super::*;
use adw::prelude::*;
use burrow::{DaemonClient, DaemonCommand, DaemonResponseData};
use gtk::Align;
use relm4::{
component::{
AsyncComponent, AsyncComponentController, AsyncComponentParts, AsyncComponentSender,
AsyncController,
},
prelude::*,
};
use std::sync::Arc;
use tokio::sync::Mutex;
mod app;
mod settings;
mod settings_screen;
mod switch_screen;
pub use app::*;