mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
chore: Disable padding
This commit is contained in:
parent
e9b852a04d
commit
8cca5186dd
1 changed files with 3 additions and 2 deletions
|
@ -32,6 +32,7 @@ class AboutLibraryLicenseController(private val bundle: Bundle) : BaseComposeCon
|
||||||
|
|
||||||
val uriHandler = LocalUriHandler.current
|
val uriHandler = LocalUriHandler.current
|
||||||
|
|
||||||
|
// FIXME: For some reason AppBar is offscreen
|
||||||
YokaiScaffold(
|
YokaiScaffold(
|
||||||
onNavigationIconClicked = router::handleBack,
|
onNavigationIconClicked = router::handleBack,
|
||||||
title = name,
|
title = name,
|
||||||
|
@ -52,8 +53,8 @@ class AboutLibraryLicenseController(private val bundle: Bundle) : BaseComposeCon
|
||||||
Column(
|
Column(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.verticalScroll(rememberScrollState())
|
.verticalScroll(rememberScrollState())
|
||||||
.padding(innerPadding)
|
.padding(innerPadding),
|
||||||
.padding(16.dp),
|
// .padding(16.dp),
|
||||||
) {
|
) {
|
||||||
HtmlLicenseText(html = license)
|
HtmlLicenseText(html = license)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue