Skip to main content

Field

Function Field 

Source
pub fn Field(props: FieldProps) -> Element
Expand description

Provides one FieldContext and renders an unstyled div around its children.

On Dioxus 0.7.10, pass listeners through an explicit attributes: vec![...] prop so listener ordering remains visible at the call site.

ยงMemoization

Children authored inline in rsx! and inline listener attributes compare unequal on every parent render, so a Field receiving either re-renders with its parent regardless of FieldContext equality. Forwarding a received element through the children prop keeps it comparable; context equality then decides whether Field re-renders.