1 2 3 4 5 6 7 8 9
use crate::app::tree::WidgetNodeRef; pub mod build_ctx; pub mod render_ctx; #[repr(transparent)] pub struct Context { pub(crate) node: WidgetNodeRef, }