Open asmodeo1 opened 1 month ago
URL of codelab
https://developer.android.com/codelabs/basic-android-kotlin-compose-add-images
In which task and step of the codelab can this issue be found?
Describe the problem
This code isn't updated:
GreetingImage( message = getString(R.string.happy_birthday_text), from = "From Emma", modifier = Modifier.padding(8.dp) )
Instead getString(R.string.happy_birthday_text) must be stringResource(R.string.happy_birthday_text), as the Codelab says.
URL of codelab
https://developer.android.com/codelabs/basic-android-kotlin-compose-add-images
In which task and step of the codelab can this issue be found?
Describe the problem
This code isn't updated:
GreetingImage( message = getString(R.string.happy_birthday_text), from = "From Emma", modifier = Modifier.padding(8.dp) )
Instead getString(R.string.happy_birthday_text) must be stringResource(R.string.happy_birthday_text), as the Codelab says.