책 내용 정리/핵심만 골라 배우는 젯팩컴포즈
-
Compose 학습 - 1 (TextView & Slider)책 내용 정리/핵심만 골라 배우는 젯팩컴포즈 2024. 11. 23. 21:18
Chapter 3class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { ComposeStudyTheme { // A surface container using the 'background' color from the theme Surface( modifier = Modifier.fillMaxSize(), color = MaterialT..