maxkeppeler / sheets-compose-dialogs

✨ Enhancing Android UIs: A Jetpack Compose Library supporting a wide range of common use-cases with Material Design 3 Dialogs, Popups, and Bottom Sheets. ✨
https://maxkeppeler.github.io/sheets-compose-dialogs/
Apache License 2.0
780 stars 32 forks source link

Add filled tonal button style #86

Open kafri8889 opened 4 months ago

kafri8889 commented 4 months ago

Any plan to add filled tonal button style?

/**
 * Available button styles.
 */
enum class ButtonStyle {

    /**
     * Text button.
     */
    TEXT,

    /**
     * Elevated button.
     */
    ELEVATED,

    /**
     * Filled button.
     */
    FILLED,

    /**
     * Outlined button.
     */
    OUTLINED
}