Skip to content

Commit 3fae99a

Browse files
committed
compose 1.8.0-beta01
1 parent 9175686 commit 3fae99a

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ buildscript {
1111
dependencies {
1212
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${rootProject.extra["kotlin_version"]}")
1313
classpath("org.jetbrains.kotlin:compose-compiler-gradle-plugin:${rootProject.extra["kotlin_version"]}")
14-
classpath("com.android.tools.build:gradle:8.9.0")
15-
classpath("org.jetbrains.compose:compose-gradle-plugin:1.7.3")
14+
classpath("com.android.tools.build:gradle:8.9.1")
15+
classpath("org.jetbrains.compose:compose-gradle-plugin:1.8.0-beta01")
1616
}
1717
}
1818
allprojects {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=io.github.softartdev
2-
VERSION=0.9.4
2+
VERSION=0.9.5
33

44
org.gradle.jvmargs=-Xmx16g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options\="-Xmx16g" -XX:+UseParallelGC -XX:MaxMetaspaceSize=1g
55
org.gradle.parallel=true

sample/src/commonMain/kotlin/com/softartdev/shared/material3/Material3App.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package com.softartdev.shared.material3
22

3+
import androidx.compose.foundation.layout.imePadding
34
import androidx.compose.runtime.Composable
45
import androidx.compose.ui.Modifier
56
import androidx.navigation.NavHostController
@@ -25,7 +26,7 @@ fun Material3App(
2526
) = PreferableMaterialTheme { // provides composition locals
2627
EnableEdgeToEdge(material3 = true, inDark = themePrefs.inDark)
2728
NavHost(
28-
modifier = modifier,
29+
modifier = modifier.imePadding(),
2930
navController = navController,
3031
startDestination = navController.currentDestination?.route ?: AppNavGraph.Settings.name,
3132
route = "Material3App"

0 commit comments

Comments
 (0)