Source set: Common
public class FloatingToolbarColors(
public val toolbarContainerColor: Color,
public val toolbarContentColor: Color,
public val fabContainerColor: Color,
public val fabContentColor: Color,
)
Represents the container and content colors used in the various floating toolbars.
Parameters
| toolbarContainerColor | the container color for the floating toolbar. |
| toolbarContentColor | the content color for the floating toolbar |
| fabContainerColor | the container color for an adjacent floating action button. |
| fabContentColor | the content color for an adjacent floating action button |
Functions
copy
Source set: Common
public fun copy(
toolbarContainerColor: Color = this.toolbarContainerColor,
toolbarContentColor: Color = this.toolbarContentColor,
fabContainerColor: Color = this.fabContainerColor,
fabContentColor: Color = this.fabContentColor,
): FloatingToolbarColors
Returns a copy of this IconToggleButtonColors, optionally overriding some of the values. This uses the Color.Unspecified to mean “use the value from the source”
equals
Source set: Common
override fun equals(other: Any?): Boolean
hashCode
Source set: Common
override fun hashCode(): Int