You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/embed/rust/src/ui/component/mod.rs

12 lines
286 B

pub mod base;
pub mod empty;
pub mod label;
pub mod map;
pub mod text;
pub mod tuple;
pub use base::{Child, Component, Event, EventCtx, Never, TimerToken};
pub use empty::Empty;
pub use label::{Label, LabelStyle};
pub use text::{FormattedText, LineBreaking, PageBreaking, TextLayout};