@Composablefun MainScreen(){ TopWeatherInfo()}@Composablefun TopWeatherInfo(){ Column { Text( text = "현 위치" ) TopWeatherInfoSection(weatherIcon = R.drawable.sunny_128, temperature = "10") }}@Composablefun TopWeatherInfoSection(weatherIcon: Int, temperature: String){ Row(modifier = Modifier.padding(16.dp)) { Image( painterResource(id =..