David Odari
08/25/2020, 7:21 PM0.1.0-dev17
and Kotlin version to 1.4.0 as well as the compose Kotlin compiler.
This are the dependencies in the dependencies block
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.3.1'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.2.0'
implementation "androidx.compose.foundation:foundation:$compose_version"
implementation "androidx.compose.material:material:$compose_version"
implementation "androidx.compose.ui:ui:$compose_version"
implementation "androidx.compose.animation:animation:$compose_version"
//For @Preview
implementation "androidx.ui:ui-tooling:$compose_version"
The issue I have is on the @Preview
annotation claiming it works on composable functions and my function is a composable function .Is there something I am missing?🤔
👇Vinay Gaba
08/25/2020, 7:23 PMDavid Odari
08/25/2020, 7:24 PMVinay Gaba
08/25/2020, 7:25 PMDavid Odari
08/25/2020, 7:31 PMallan.conda
08/26/2020, 3:06 AM