1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 13:57:10 +09:00

DROID-1891 Settings | Fix | Make about-app screen scrollable

This commit is contained in:
uburoiubu 2023-11-01 19:43:34 +01:00
parent 12df37956e
commit 2d6b9d24cf
No known key found for this signature in database
GPG key ID: C8FB80E0A595FBB6

View file

@ -6,6 +6,8 @@ import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.material.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
@ -35,7 +37,7 @@ fun AboutAppScreen(
onContactUsClicked: () -> Unit,
onExternalLinkClicked: (AboutAppViewModel.ExternalLink) -> Unit,
) {
Column {
Column(Modifier.verticalScroll(rememberScrollState())) {
Box(
modifier = Modifier
.padding(top = 6.dp)