FloatingActionButtonDefaults
Kotlin
|Java
object FloatingActionButtonDefaults
kotlin.Any | |
↳ | androidx.compose.material.FloatingActionButtonDefaults |
Contains the default values used by FloatingActionButton
Summary
Public methods | |
---|---|
FloatingActionButtonElevation |
Creates a FloatingActionButtonElevation that will animate between the provided values according to the Material specification. |
Public methods
elevation
@Composable fun elevation(
defaultElevation: Dp = 6.dp,
pressedElevation: Dp = 12.dp
): FloatingActionButtonElevation
Creates a FloatingActionButtonElevation that will animate between the provided values according to the Material specification.
Parameters | |
---|---|
defaultElevation: Dp = 6.dp | the elevation to use when the FloatingActionButton has no Interactions |
pressedElevation: Dp = 12.dp | the elevation to use when the FloatingActionButton is pressed. |