🌈 Create new beautiful Compose Gradients with our new wesite ->
Compose Component

FloatingActionButton

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

FloatingActionButton social preview

SimpleFab

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