accordion
Builds Accordion Toggle ToggleGroup


The code that drew it
A still frame holds a repeating animation at its first frame and a one-shot at its last, because a still of a moving thing is not reproducible. Run the gallery to review motion.
fn accordion(_window: &mut Window, cx: &mut App) -> AnyElement {
let theme = cx.theme().clone();
stack(&theme)
.w(px(520.0))
.child(
Accordion::new("scene.accordion.settings")
.expanded_ids(&["network"])
.on_toggle(|_, _, _, _| {})
.section(
AccordionSection::new("network", "Network")
.description("How this machine reaches a host")
.body(div().child("Requests go out over the system proxy.")),
)
.section(
AccordionSection::new("storage", "Storage")
.description("Where verified results are kept")
.body(div().child("Nothing is written outside the workspace.")),
)
.section(
AccordionSection::new("policy", "Managed by policy")
.description("This machine cannot change these")
.disabled(true)
.body(div().child("Set by the administrator.")),
),
)
.into_any_element()
}