Postingan

PPB F_Tugas 6

Nama I Putu Bagus Adhi Pradana NRP 5025201010      Kelas PPB F Image Scroll class MainActivity : ComponentActivity () { override fun onCreate (savedInstanceState: Bundle ?) { super .onCreate(savedInstanceState) setContent { AffirmationsTheme { // A surface container using the 'background' color from the theme Surface( modifier = Modifier.fillMaxSize(), color = MaterialTheme.colorScheme.background ) { AffirmationsApp() } } } } } @Composable fun AffirmationsApp () { AffirmationList(affirmationList = Datasource().loadAffirmations()) } @Composable fun AffirmationCard (affirmation: Affirmation , modifier: Modifier = Modifier) { Card(modifier = modifier) { Column {...