FloatingActionButton

A floating action button (FAB) represents the primary action of a screen.

FloatingActionButton preview
RevenueCat

RevenueCat

Add subscriptions to your apps in minutes

Ad Get started for free

SimpleFab

@Composable
fun SimpleFab() {
    FloatingActionButton(onClick = { /*do something*/ }) {
        Icon(Icons.Filled.Favorite, contentDescription = "Localized description")
    }
}