Skip to content

Instantly share code, notes, and snippets.

@amoozeshbebin
Created September 6, 2023 08:34
Show Gist options
  • Save amoozeshbebin/41685c48c499a21e2d2f69525c9a3c0c to your computer and use it in GitHub Desktop.
Save amoozeshbebin/41685c48c499a21e2d2f69525c9a3c0c to your computer and use it in GitHub Desktop.
Floating Action Button Material 3 JetPak Compose
@Composable
fun FloatingActionButton(){
FloatingActionButton(
onClick = {
//OnClick Method
},
containerColor = MaterialTheme.colorScheme.secondary,
shape = RoundedCornerShape(16.dp),
) {
Icon(
imageVector = Icons.Rounded.Add,
contentDescription = "Add FAB",
tint = Color.White,
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment