FilledButton

Functions summary

Unit
@Composable
FilledButton(
    text: String,
    onClick: Action,
    modifier: GlanceModifier,
    enabled: Boolean,
    icon: ImageProvider?,
    colors: ButtonColors,
    maxLines: Int
)

A button styled per Material3.

Unit
@Composable
FilledButton(
    text: String,
    onClick: () -> Unit,
    modifier: GlanceModifier,
    enabled: Boolean,
    icon: ImageProvider?,
    colors: ButtonColors,
    maxLines: Int,
    key: String?
)

A button styled per Material3.

Functions

FilledButton

@Composable
fun FilledButton(
    text: String,
    onClick: Action,
    modifier: GlanceModifier = GlanceModifier,
    enabled: Boolean = true,
    icon: ImageProvider? = null,
    colors: ButtonColors = ButtonDefaults.buttonColors(),
    maxLines: Int = Int.MAX_VALUE
): Unit

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

Parameters
text: String

The text that this button will show.

onClick: Action

The action to be performed when this button is clicked.

modifier: GlanceModifier = GlanceModifier

The modifier to be applied to this button.

enabled: Boolean = true

If false, the button will not be clickable.

icon: ImageProvider? = null

An optional leading icon placed before the text.

colors: ButtonColors = ButtonDefaults.buttonColors()

The colors to use for the background and content of the button.

maxLines: Int = Int.MAX_VALUE

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.

FilledButton

@Composable
fun FilledButton(
    text: String,
    onClick: () -> Unit,
    modifier: GlanceModifier = GlanceModifier,
    enabled: Boolean = true,
    icon: ImageProvider? = null,
    colors: ButtonColors = ButtonDefaults.buttonColors(),
    maxLines: Int = Int.MAX_VALUE,
    key: String? = null
): Unit

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

Parameters
text: String

The text that this button will show.

onClick: () -> Unit

The action to be performed when this button is clicked.

modifier: GlanceModifier = GlanceModifier

The modifier to be applied to this button.

enabled: Boolean = true

If false, the button will not be clickable.

icon: ImageProvider? = null

An optional leading icon placed before the text.

colors: ButtonColors = ButtonDefaults.buttonColors()

The colors to use for the background and content of the button.

maxLines: Int = Int.MAX_VALUE

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: String? = null

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.