Skip to content

Commit

Permalink
Add modifier argument for ArkAbout screen (#104)
Browse files Browse the repository at this point in the history
* Add modifier argument for ArkAbout screen

* use modifier

---------

Co-authored-by: mdrlzy
  • Loading branch information
hieuwu authored Sep 1, 2024
1 parent 1b0cb55 commit ad29fd9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import dev.arkbuilders.components.about.presentation.ui.SocialLink

@Composable
fun ArkAbout(
modifier: Modifier = Modifier,
appName: String,
@DrawableRes
appLogoResId: Int,
Expand Down Expand Up @@ -69,7 +70,7 @@ fun ArkAbout(
}

Column(
modifier = Modifier
modifier = modifier
.verticalScroll(rememberScrollState())
) {
Column(
Expand Down

0 comments on commit ad29fd9

Please sign in to comment.