Update Compose Version and Create Chip Row in Compose

This commit is contained in:
LooKeR
2022-03-10 00:12:19 +05:30
parent c8a61a59cd
commit 1126b5f425
3 changed files with 59 additions and 13 deletions

View File

@ -49,7 +49,7 @@ android {
}
composeOptions {
kotlinCompilerExtensionVersion "1.2.0-alpha01"
kotlinCompilerExtensionVersion "1.2.0-alpha05"
}
buildTypes {
@ -167,13 +167,13 @@ dependencies {
kapt 'androidx.room:room-compiler:2.4.2'
// Compose
implementation "androidx.compose.runtime:runtime:1.2.0-alpha04"
implementation "androidx.compose.ui:ui:1.2.0-alpha04"
implementation "androidx.compose.ui:ui-tooling:1.2.0-alpha04"
implementation "androidx.compose.foundation:foundation:1.2.0-alpha04"
implementation "androidx.compose.runtime:runtime-livedata:1.2.0-alpha04"
implementation "androidx.compose.material3:material3:1.0.0-alpha06"
implementation "androidx.compose.material:material:1.2.0-alpha04"
implementation "androidx.compose.runtime:runtime:1.2.0-alpha05"
implementation "androidx.compose.ui:ui:1.2.0-alpha05"
implementation "androidx.compose.ui:ui-tooling:1.2.0-alpha05"
implementation "androidx.compose.foundation:foundation:1.2.0-alpha05"
implementation "androidx.compose.runtime:runtime-livedata:1.2.0-alpha05"
implementation "androidx.compose.material3:material3:1.0.0-alpha07"
implementation "androidx.compose.material:material:1.2.0-alpha05"
implementation "com.google.android.material:compose-theme-adapter:1.1.5"
}