raui-material 0.70.17

Material components library for RAUI
Documentation
use crate::component::containers::paper::paper;
use raui_core::{
    make_widget,
    widget::{
        component::containers::horizontal_box::{horizontal_box, nav_horizontal_box},
        context::WidgetContext,
        node::WidgetNode,
        unit::content::ContentBoxItemLayout,
    },
};

pub fn nav_horizontal_paper(context: WidgetContext) -> WidgetNode {
    let WidgetContext {
        idref,
        key,
        props,
        listed_slots,
        ..
    } = context;

    let inner_props = props.clone().without::<ContentBoxItemLayout>();

    make_widget!(paper)
        .key(key)
        .maybe_idref(idref.cloned())
        .merge_props(props.clone())
        .listed_slot(
            make_widget!(nav_horizontal_box)
                .key("horizontal")
                .merge_props(inner_props)
                .listed_slots(listed_slots),
        )
        .into()
}

pub fn horizontal_paper(context: WidgetContext) -> WidgetNode {
    let WidgetContext {
        idref,
        key,
        props,
        listed_slots,
        ..
    } = context;

    let inner_props = props.clone().without::<ContentBoxItemLayout>();

    make_widget!(paper)
        .key(key)
        .maybe_idref(idref.cloned())
        .merge_props(props.clone())
        .listed_slot(
            make_widget!(horizontal_box)
                .key("horizontal")
                .merge_props(inner_props)
                .listed_slots(listed_slots),
        )
        .into()
}