Function zng_app::widget::node::match_widget

source ยท
pub fn match_widget<W: UiNode>(
    child: W,
    closure: impl FnMut(&mut MatchWidgetChild<W>, UiNodeOp<'_>) + Send + 'static,
) -> impl UiNode
Expand description

Creates a widget that is implemented as a closure that matches over UiNodeOp and delegates to another child widget.

The returned node will delegate to child like match_node does, and will also delegate UiNode::is_widget and UiNode::with_context.

Note that the closure itself will not run inside UiNode::with_context.

Note that unlike the match_node the W type is always preserved, the feature dyn_node is ignored here.