Skip to content

Commit 8e0f22d

Browse files
committed
Improve UI in about page
Signed-off-by: Saul Henriquez <saul_henriquez@hotmail.com>
1 parent 2e2a2e1 commit 8e0f22d

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

Omega/src/com/neoapps/neolauncher/compose/pages/preferences/AboutPrefPage.kt

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,10 @@ fun AcknowledgementScreen() {
267267
title = stringResource(R.string.title__about_acknowledgement)
268268
) {
269269
Column(
270-
modifier = Modifier.padding(top = it.calculateTopPadding() + 8.dp)
270+
modifier = Modifier.padding(
271+
top = it.calculateTopPadding() + 8.dp,
272+
bottom = it.calculateBottomPadding()
273+
)
271274
) {
272275
ComposableWebView(url = "file:///android_asset/acknowledgement.htm")
273276
}
@@ -281,7 +284,10 @@ fun ChangelogScreen() {
281284
title = stringResource(R.string.title__about_changelog),
282285
) {
283286
Column(
284-
modifier = Modifier.padding(top = it.calculateTopPadding() + 8.dp)
287+
modifier = Modifier.padding(
288+
top = it.calculateTopPadding() + 8.dp,
289+
bottom = it.calculateBottomPadding()
290+
)
285291
) {
286292
ComposableWebView(url = "file:///android_asset/changelog.htm")
287293
}
@@ -294,7 +300,10 @@ fun TranslatorsScreen() {
294300
title = stringResource(R.string.about_translators),
295301
) {
296302
Column(
297-
modifier = Modifier.padding(top = it.calculateTopPadding() + 8.dp)
303+
modifier = Modifier.padding(
304+
top = it.calculateTopPadding() + 8.dp,
305+
bottom = it.calculateBottomPadding()
306+
)
298307
) {
299308
ComposableWebView(url = "file:///android_asset/translators.htm")
300309
}

0 commit comments

Comments
 (0)