Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ import androidx.compose.animation.fadeOut
import androidx.compose.animation.slideInHorizontally
import androidx.compose.animation.slideOutHorizontally
import androidx.compose.animation.togetherWith
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.runtime.Composable
import androidx.compose.runtime.CompositionLocalProvider
import androidx.compose.runtime.LaunchedEffect
Expand Down Expand Up @@ -170,7 +172,7 @@ internal fun App(

val scrimController = remember { ScrimController() }

Box(modifier = semanticsModifier) {
Box(modifier = semanticsModifier.fillMaxSize().background(CodeTheme.colors.background)) {
SharedTransitionLayout {
CompositionLocalProvider(
LocalCodeNavigator provides codeNavigator,
Expand Down
Loading