Ghost Button
Ghost buttons are buttons with no visible bounds.
import androidx.compose.runtime.Composable
import com.composables.uikit.components.GhostButton
import com.composables.uikit.components.Text
@Composable
fun GhostButtonExample() {
GhostButton(onClick = { /* TODO */ }) {
Text("Ghost Button")
}
}
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.GhostButton
import com.composables.uikit.components.Text
@Composable
fun GhostButtonExample() {
GhostButton(onClick = { /* TODO */ }) {
Text("Ghost Button")
}
}