Compose BottomBar transparent background - 모서리 둥글게
BottomAppBar 모서리 둥글게 BottomAppBar서 모서리를 둥글게 만들기 위해서는 Modifier.clip을 사용할 수 있다. 아래 코드처럼 RoundedCornerShape(topStart = 40.dp, tepEnd = 40.dp)를 적용하여 위쪽의 왼쪽과 오른쪽 모서리를 둥글게 만들 수 있다. Scaffold ( bottomBar = { BottomAppBar ( modifier = Modifier . background (Color. Transparent ) . clip ( RoundedCornerShape ( topStart = 40 . dp , topEnd = 40 . dp )), containerColor = Color. Green ) { Row ( modifier = Modifier. fillMaxWidth (), horizontalArrangement = Arrangement. SpaceEvenly ) { IconButton ( onClick = {} ) { Icon (Icons.Filled. Add , contentDescription = "add" ) } IconButton ( onClick = {} ) { Icon (Icons.Filled. Add , contentDescription = "add" ) } IconButton ( onClick = {} ) { Icon (Icons.Filled. Add , contentDescription = "add" ) } } } } ) { innerPadding -> Column ( modifier = Modifier . padding (innerP...