You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the problem
there is a mistake with this line " Modifier = Modifier" :
fun AffirmationsApp() {
val layoutDirection = LocalLayoutDirection.current
Surface(
Modifier = Modifier
should be this one:
val layoutDirection = LocalLayoutDirection.current
Surface(
modifier = Modifier
In which lesson and step of the codelab can this issue be found?
Lesson number + step number.
[3. Add a list to your app]
How to reproduce?
What are the exact steps to reproduce the problem?
Versions
What version of Android Studio are you using?
Android Studio Koala | 2024.1.1 Patch 1
Build #AI-241.18034.62.2411.12071903, built on July 10, 2024
Runtime version: 17.0.11+0-17.0.11b1207.24-11852314 amd64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
Linux 6.1.0-23-amd64
GC: G1 Young Generation, G1 Old Generation
Memory: 4000M
Cores: 8
Registry:
ide.experimental.ui=true
Non-Bundled Plugins:
com.andrey4623.rainbowcsv (2.0.2)
com.intellij.marketplace (241.17890.43)
indent-rainbow.indent-rainbow (2.2.0)
izhangzhihao.rainbow.brackets.lite (1.1.0)
com.github.beansoft.jadx.gui.idea (2022.1.0)
Current Desktop: X-Cinnamon
What API level are you targeting?
Additional information
Add any other context about the problem here.
Name of the Codelab or Codelab URL
https://developer.android.com/codelabs/basic-android-kotlin-compose-training-add-scrollable-list?continue=https%3A%2F%2Fdeveloper.android.com%2Fcourses%2Fpathways%2Fandroid-basics-compose-unit-3-pathway-2%23codelab-https%3A%2F%2Fdeveloper.android.com%2Fcodelabs%2Fbasic-android-kotlin-compose-training-add-scrollable-list#2
Describe the problem
there is a mistake with this line " Modifier = Modifier" :
fun AffirmationsApp() {
val layoutDirection = LocalLayoutDirection.current
Surface(
Modifier = Modifier
should be this one:
val layoutDirection = LocalLayoutDirection.current
Surface(
modifier = Modifier
In which lesson and step of the codelab can this issue be found?
Lesson number + step number.
[3. Add a list to your app]
How to reproduce?
What are the exact steps to reproduce the problem?
Versions
What version of Android Studio are you using?
Android Studio Koala | 2024.1.1 Patch 1
Build #AI-241.18034.62.2411.12071903, built on July 10, 2024
Runtime version: 17.0.11+0-17.0.11b1207.24-11852314 amd64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
Linux 6.1.0-23-amd64
GC: G1 Young Generation, G1 Old Generation
Memory: 4000M
Cores: 8
Registry:
ide.experimental.ui=true
Non-Bundled Plugins:
com.andrey4623.rainbowcsv (2.0.2)
com.intellij.marketplace (241.17890.43)
indent-rainbow.indent-rainbow (2.2.0)
izhangzhihao.rainbow.brackets.lite (1.1.0)
com.github.beansoft.jadx.gui.idea (2022.1.0)
Current Desktop: X-Cinnamon
What API level are you targeting?
Additional information
Add any other context about the problem here.
codelab: basic-android-compose-training-add-scrollable-list
The text was updated successfully, but these errors were encountered: