File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
app/src/main/java/app/revanced/manager/ui/screen Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -110,15 +110,16 @@ fun UpdateScreen(
110110 modifier = Modifier .nestedScroll(scrollBehavior.nestedScrollConnection),
111111 ) { paddingValues ->
112112 Column (
113- modifier = Modifier .fillMaxSize( ),
113+ modifier = Modifier .padding(paddingValues ),
114114 ) {
115- if (vm.state == State .DOWNLOADING )
115+ if (vm.state == State .DOWNLOADING ) {
116116 LinearWavyProgressIndicator (
117117 progress = { vm.downloadProgress },
118118 modifier = Modifier
119119 .padding(top = paddingValues.calculateTopPadding())
120120 .fillMaxWidth(),
121121 )
122+ }
122123
123124 AnimatedVisibility (visible = vm.showInternetCheckDialog) {
124125 MeteredDownloadConfirmationDialog (
@@ -128,8 +129,7 @@ fun UpdateScreen(
128129 }
129130
130131 ChangelogList (
131- changelogs = changelogs,
132- contentPadding = paddingValues
132+ changelogs = changelogs
133133 )
134134 }
135135 }
You can’t perform that action at this time.
0 commit comments