Skip to content

Commit

Permalink
Merge pull request #453 from android/av/list-detail-compose-expandabl…
Browse files Browse the repository at this point in the history
…e-pane

Add expandable pane to list-detail-compose
  • Loading branch information
alexvanyo committed Jan 18, 2024
2 parents d3796bd + 15e9ce1 commit 3695771
Show file tree
Hide file tree
Showing 5 changed files with 293 additions and 31 deletions.
23 changes: 12 additions & 11 deletions CanonicalLayouts/list-detail-compose/app/build.gradle
Expand Up @@ -20,12 +20,12 @@ plugins {

android {
namespace 'com.example.listdetailcompose'
compileSdk 33
compileSdk 34

defaultConfig {
applicationId "com.example.listdetailcompose"
minSdk 21
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0"

Expand All @@ -52,7 +52,7 @@ android {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion '1.3.2'
kotlinCompilerExtensionVersion '1.5.8'
}
packagingOptions {
resources {
Expand All @@ -62,17 +62,18 @@ android {
}

dependencies {
def composeBom = platform('androidx.compose:compose-bom:2022.10.00')
def composeBom = platform('androidx.compose:compose-bom:2023.10.01')
implementation(composeBom)

implementation "com.google.accompanist:accompanist-adaptive:0.27.0"
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
implementation 'androidx.activity:activity-compose:1.6.1'
implementation "androidx.compose.ui:ui"
implementation "com.google.accompanist:accompanist-adaptive:0.32.0"
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.7.0'
implementation 'androidx.activity:activity-compose:1.8.2'
implementation "androidx.compose.foundation:foundation:1.6.0-rc01"
implementation "androidx.compose.ui:ui:1.6.0-rc01"
implementation "androidx.compose.ui:ui-tooling-preview"
implementation "androidx.window:window:1.1.0-alpha03"
implementation "androidx.window:window:1.2.0"
implementation 'androidx.compose.material3:material3'
implementation "androidx.compose.material3:material3-window-size-class"
testImplementation 'junit:junit:4.13.2'
}
}

0 comments on commit 3695771

Please sign in to comment.