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
|
||||
|
||||
// FIXME: For some reason AppBar is offscreen
|
||||
YokaiScaffold(
|
||||
onNavigationIconClicked = router::handleBack,
|
||||
title = name,
|
||||
|
@ -52,8 +53,8 @@ class AboutLibraryLicenseController(private val bundle: Bundle) : BaseComposeCon
|
|||
Column(
|
||||
modifier = Modifier
|
||||
.verticalScroll(rememberScrollState())
|
||||
.padding(innerPadding)
|
||||
.padding(16.dp),
|
||||
.padding(innerPadding),
|
||||
// .padding(16.dp),
|
||||
) {
|
||||
HtmlLicenseText(html = license)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue