We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
EmptyDecoration
1 parent a567b58 commit ce1e59fCopy full SHA for ce1e59f
1 file changed
circuit-foundation/src/commonMain/kotlin/com/slack/circuit/foundation/NavigableCircuitContent.kt
@@ -20,6 +20,7 @@ import androidx.compose.animation.shrinkHorizontally
20
import androidx.compose.animation.slideInHorizontally
21
import androidx.compose.animation.slideOutHorizontally
22
import androidx.compose.animation.togetherWith
23
+import androidx.compose.foundation.layout.Box
24
import androidx.compose.runtime.Composable
25
import androidx.compose.runtime.CompositionLocalProvider
26
import androidx.compose.runtime.DisposableEffect
@@ -445,7 +446,7 @@ public object NavigatorDefaults {
445
446
modifier: Modifier,
447
content: @Composable (T) -> Unit,
448
) {
- content(args.first())
449
+ Box(modifier = modifier) { content(args.first()) }
450
}
451
452
0 commit comments