Tugas 4 PPB D
Tugas 4 - PPB D Ahmad Fauzan Alghifari - 5025211091 Membuat aplikasi sederhana yaitu Dice Roller app menggunakan android studio. class MainActivity : ComponentActivity() { override fun onCreate (savedInstanceState: Bundle?) { super .onCreate(savedInstanceState) enableEdgeToEdge () setContent { DiceRollerTheme { DiceRollerApp () } } } } @Preview @Composable fun DiceRollerApp () { DiceWithButtonAndImage ( modifier = Modifier . fillMaxSize () . wrapContentSize (Alignment. Center ) ) } @Composable fun DiceWithButtonAndImage (modifier: Modifier = Modifier) { var result by remember { mutableStateOf ( 1 ) } val imageResource = when (result) { 1 -> R.drawable. dice_1 2 -> R.drawable. dice_2 3 -> R.drawable. dice_3 4 -> R.drawable. dice_4 5 -> R.drawable. dice_5 else -> R.drawable. dice_6 } Column ( ...