Secondary Button

Used for indication secondary actions in the UI.

import androidx.compose.runtime.Composable
import com.composables.uikit.components.PrimaryButton
import com.composables.uikit.components.SecondaryButton
import com.composables.uikit.components.Text

@Composable
fun SecondaryButtonExample() {
    SecondaryButton(onClick = { /* TODO */ }) {
        Text("Save changes")
    }
}

Installation

Get access to the source code of all components with a single one-time payment.Buy license ->

Usage

import androidx.compose.runtime.Composable
import com.composables.uikit.components.PrimaryButton
import com.composables.uikit.components.SecondaryButton
import com.composables.uikit.components.Text

@Composable
fun SecondaryButtonExample() {
    SecondaryButton(onClick = { /* TODO */ }) {
        Text("Save changes")
    }
}