1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-12 01:28:10 +00:00
trezor-firmware/core/embed/rust/src/ui/model_tr/mod.rs
matejcik e53f47811f refactor(core): introduce Simplified trait
to abstract over some common operations between models

[no changelog]
2024-03-27 16:21:09 +01:00

18 lines
386 B
Rust

use super::{geometry::Rect, layout::simplified::SimplifiedFeatures};
#[cfg(feature = "bootloader")]
pub mod bootloader;
pub mod common_messages;
pub mod component;
pub mod constant;
#[cfg(feature = "micropython")]
pub mod layout;
pub mod screens;
pub mod theme;
pub struct ModelTRFeatures {}
impl SimplifiedFeatures for ModelTRFeatures {
const SCREEN: Rect = constant::SCREEN;
}