OutlineButton

Composable Function
Android
@Composable
public fun OutlineButton(
    text: String,
    contentColor: ColorProvider,
    onClick: () -> Unit,
    modifier: GlanceModifier = GlanceModifier,
    enabled: Boolean = true,
    icon: ImageProvider? = null,
    maxLines: Int = Int.MAX_VALUE,
    key: String? = null,
): Unit

An outline button styled per Material3. It has a transparent background. It is more opinionated than Button and suitable for uses where M3 is preferred.

Parameters

text The text that this button will show.
onClick The action to be performed when this button is clicked.
modifier The modifier to be applied to this button.
enabled If false, the button will not be clickable.
icon An optional leading icon placed before the text.
contentColor The color used for the text, optional icon tint, and outline.
maxLines An optional maximum number of lines for the text to span, wrapping if necessary. If the text exceeds the given number of lines, it will be truncated.
key A stable and unique key that identifies the action for this button. This ensures that the correct action is triggered, especially in cases of items that change order. If not provided we use the key that is automatically generated by the Compose runtime, which is unique for every exact code location in the composition tree.
Android
@Composable
public fun OutlineButton(
    text: String,
    contentColor: ColorProvider,
    onClick: Action,
    modifier: GlanceModifier = GlanceModifier,
    enabled: Boolean = true,
    icon: ImageProvider? = null,
    maxLines: Int = Int.MAX_VALUE,
)

An outline button styled per Material3. It has a transparent background. It is more opinionated than Button and suitable for uses where M3 is preferred.

Parameters

text The text that this button will show.
onClick The action to be performed when this button is clicked.
modifier The modifier to be applied to this button.
enabled If false, the button will not be clickable.
icon An optional leading icon placed before the text.
contentColor The color used for the text, optional icon tint, and outline.
maxLines An optional maximum number of lines for the text to span, wrapping if necessary. If the text exceeds the given number of lines, it will be truncated.