Skip to content

Instantly share code, notes, and snippets.

@MrNtlu
Created December 6, 2022 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MrNtlu/b435bb9bb5ee7e942a3911d53b66a9e7 to your computer and use it in GitHub Desktop.
Save MrNtlu/b435bb9bb5ee7e942a3911d53b66a9e7 to your computer and use it in GitHub Desktop.
Bottom Sheet Gradle
//...
android {
//...
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion '1.3.1'
}
}
dependencies {
//...
def compose_ui_version = '1.3.1'
implementation "androidx.compose.ui:ui:$compose_ui_version"
implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version"
implementation "androidx.compose.material:material:$compose_ui_version"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment