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

DROID-1493 Onboarding | Fix | Change the content vertical position on the start screen (#153)

This commit is contained in:
Evgenii Kozlov 2023-07-10 15:14:26 +02:00 committed by uburoiubu
parent 827bdff8ed
commit 03adaac0b1
No known key found for this signature in database
GPG key ID: C8FB80E0A595FBB6

View file

@ -4,8 +4,10 @@ import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.wrapContentHeight
import androidx.compose.foundation.text.ClickableText
@ -68,6 +70,7 @@ fun AuthScreen(
Column(modifier = Modifier.fillMaxSize(), verticalArrangement = Arrangement.Center) {
Title(modifier = Modifier)
Description()
Spacer(modifier = Modifier.height(72.dp))
}
Column(
modifier = Modifier.fillMaxSize(),