Skip to content

Commit

Permalink
fix(installer): make the correct column scrollable
Browse files Browse the repository at this point in the history
  • Loading branch information
Axelen123 committed Jun 27, 2023
1 parent 9dd74f1 commit 1eac42d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ fun InstallerScreen(
Column(
modifier = Modifier
.padding(paddingValues)
.verticalScroll(rememberScrollState())
.fillMaxSize()
) {
patcherState.steps.forEach {
Expand Down Expand Up @@ -141,13 +142,11 @@ fun InstallStep(step: Step) {
}

AnimatedVisibility(visible = expanded) {
val scrollState = rememberScrollState()
Column(
verticalArrangement = Arrangement.spacedBy(16.dp),
modifier = Modifier
.background(MaterialTheme.colorScheme.background.copy(0.6f))
.fillMaxWidth()
.verticalScroll(scrollState)
.padding(16.dp)
.padding(start = 4.dp)
) {
Expand Down

0 comments on commit 1eac42d

Please sign in to comment.