Skip to content

Commit

Permalink
Merge branch 'fix-initial-view-size'
Browse files Browse the repository at this point in the history
  • Loading branch information
lneugebauer committed Aug 19, 2024
2 parents 3f431f3 + 7adec2a commit e223212
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.activity.viewModels
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.padding
import androidx.compose.material.Scaffold
import androidx.compose.runtime.Composable
Expand Down Expand Up @@ -97,7 +98,9 @@ fun NextcloudCookbookApp() {
) { innerPadding ->
DestinationsNavHost(
navGraph = NavGraphs.root,
modifier = Modifier.padding(innerPadding),
modifier = Modifier
.padding(innerPadding)
.fillMaxSize(),
navController = navController,
) {
composable(SplashScreenDestination) {
Expand Down

0 comments on commit e223212

Please sign in to comment.