2025/01/07 4

[Compose] BottomAppBar

원하는 ref들은 content를 사용해 추가해야함을 알 수 있다 보통 scaffold와 함께 사용한다, 자주 사용하는 bottombar의 형식인 5가지 버튼을 공부했던 내용들을 사용해 생성해보자 @SuppressLint("UnusedMaterial3ScaffoldPaddingParameter")@Composablefun WholeTest() { Scaffold( bottomBar = { MyBottomAppBar() } ) { innerPadding -> }}@Composablefun MyBottomAppBar() { BottomAppBar { ConstraintLayout( modifier = Modifier.fillMaxWidth(..

카테고리 없음 2025.01.07

[Compose] ConstraintLayout, ConstraintSet

library 추가 필요[libs.version.toml][versions]//...constaraintLayoutVersion = "1.1.0"[libraries]//...androidx-constraint-layout = { group = "androidx.constraintlayout", name = "constraintlayout-compose", version.ref = "constaraintLayoutVersion" }[plugins]//... createRefs()- constraintLayout 안에 있는 여러 UI 요소(예: 버튼, 텍스트 등)를 서로 연결하고 배치할 수 있는 참조를 생성@Stablefun createRefs(): ConstraintLayoutScope.Constraine..

🤖 Compose 2025.01.07