pub fn Popover(props: PopoverProps) -> impl IntoViewExpand description
A floating panel anchored to a trigger element, toggled by the open signal and by
clicking the trigger. It repositions on scroll and resize to stay in the viewport,
flipping side and shifting as needed, and dismisses on outside click via on_dismiss.
§Required Props
- open:
RwSignal<bool> - trigger:
impl Into<ViewFn> - children:
ChildrenFn
§Optional Props
- side:
Side - align:
Align - offset:
f64 - on_dismiss:
Callback<()>