HorizontalFloatingToolbarWithFabOverrideScope

Parameters available to the HorizontalFloatingToolbar that includes a Floating Action Button.

Properties

Link copied to clipboard
val animationSpec: FiniteAnimationSpec<Float>

the animation spec to use for this floating toolbar expand and collapse animation.

Link copied to clipboard

the elevation for the shadow below this floating toolbar when collapsed.

Link copied to clipboard

the colors used for this floating toolbar. There are two predefined FloatingToolbarColors at FloatingToolbarDefaults.standardFloatingToolbarColors and FloatingToolbarDefaults.vibrantFloatingToolbarColors which you can use or modify. See also floatingActionButton for more information on the right FAB to use for proper styling.

Link copied to clipboard
val content: @Composable RowScope.() -> Unit

the main content of this floating toolbar. The default layout here is a Row, so content inside will be placed horizontally.

Link copied to clipboard
val contentPadding: PaddingValues

the padding applied to the content of this floating toolbar.

Link copied to clipboard

the elevation for the shadow below this floating toolbar when expanded.

Link copied to clipboard
val floatingActionButton: @Composable () -> Unit

a floating action button to be displayed by the toolbar. It's recommended to use a FloatingToolbarDefaults.VibrantFloatingActionButton or FloatingToolbarDefaults.StandardFloatingActionButton that is styled to match the colors. Note that the provided FAB's size is controlled by the floating toolbar and animates according to its state. In case a custom FAB is provided, make sure it's set with a Modifier.fillMaxSize to be sized correctly.

Link copied to clipboard

the position of the floating toolbar's floating action button. By default, the FAB is placed at the end of the toolbar (i.e. aligned to the right in left-to-right layout, or to the left in right-to-left layout).

Link copied to clipboard

whether the floating toolbar is expanded or not. In its expanded state, the FAB and the toolbar content are organized horizontally. Otherwise, only the FAB is visible. Note that the toolbar will stay expanded in case a touch exploration service (e.g., TalkBack) is active.

Link copied to clipboard
val modifier: Modifier

the Modifier to be applied to this floating toolbar.

Link copied to clipboard

a FloatingToolbarScrollBehavior. If provided, this FloatingToolbar will automatically react to scrolling. If your toolbar is positioned along a center edge of the screen (like top or bottom center), it's best to use this scroll behavior to make the entire toolbar scroll off-screen as the user scrolls. This would prevent the FAB from appearing off-center, which may occur in this case when using the isExpanded flag to simply expand or collapse the toolbar. Note that the toolbar will not react to scrolling in case a touch exploration service (e.g., TalkBack) is active.

Link copied to clipboard
val shape: Shape

the shape used for this floating toolbar content.