Floating bar of bulk actions for the current selection, pinned to the bottom of the screen. Controlled via open on ActionBar.Root — there is no trigger.
open
ActionBar.Root
<ActionBar.Root open={selectedCount > 0}> <ActionBar.Positioner> <ActionBar.Content> <Text>{selectedCount} selected</Text> <ActionBar.Separator /> <Button trackingData={{ event: "Delete selection" }}>Delete</Button> </ActionBar.Content> </ActionBar.Positioner></ActionBar.Root> Copy
<ActionBar.Root open={selectedCount > 0}> <ActionBar.Positioner> <ActionBar.Content> <Text>{selectedCount} selected</Text> <ActionBar.Separator /> <Button trackingData={{ event: "Delete selection" }}>Delete</Button> </ActionBar.Content> </ActionBar.Positioner></ActionBar.Root>
Floating bar of bulk actions for the current selection, pinned to the bottom of the screen. Controlled via
openonActionBar.Root— there is no trigger.Example