1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-01 04:12:37 +00:00
trezor-firmware/core/embed/rust/src/ui/flow/mod.rs
Martin Milata 90f4492cec feat(core/ui): rust-based UI flows
[no changelog]
2024-04-16 23:32:38 +02:00

11 lines
228 B
Rust

pub mod base;
mod flow;
pub mod page;
mod store;
mod swipe;
pub use base::{FlowMsg, FlowState, Swipable, SwipeDirection};
pub use flow::SwipeFlow;
pub use page::{IgnoreSwipe, SwipePage};
pub use store::{flow_store, FlowStore};