Created
April 26, 2024 01:19
-
-
Save fvilarino/4acf5a8fa85033ae85bba2fead985f05 to your computer and use it in GitHub Desktop.
Container Transform - FAB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FloatingActionButton( | |
modifier = Modifier | |
.align(Alignment.BottomEnd) | |
.padding(all = 16.dp), | |
onClick = { | |
// TODO | |
} | |
) { | |
Icon( | |
imageVector = Icons.Default.Add, | |
contentDescription = "Add", | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment