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:
parent
12df37956e
commit
2d6b9d24cf
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue