frui_core 0.0.1

Core functionality of Frui UI framework
Documentation
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,
}