IconButton

IconButton is a clickable icon, used to represent actions.

RevenueCat

RevenueCat

Add subscriptions to your apps in minutes

Ad Get started for free

IconButtonSample

@Composable
fun IconButtonSample() {
    IconButton(onClick = { /* doSomething() */ }) {
        Icon(Icons.Filled.Favorite, contentDescription = "Localized description")
    }
}