♻️ Refactor core for minimal PageTop setup

This commit is contained in:
Manuel Cillero 2024-11-30 22:15:06 +01:00
parent 2b229573cd
commit 556c9159d3
64 changed files with 192 additions and 6561 deletions

View file

@ -1,8 +1,11 @@
mod basic;
pub use basic::Basic;
use crate::prelude::*;
mod chassis;
pub use chassis::Chassis;
pub struct Basic;
mod inception;
pub use inception::Inception;
impl PackageTrait for Basic {
fn theme(&self) -> Option<ThemeRef> {
Some(&Basic)
}
}
impl ThemeTrait for Basic {}