fix: Improve design

Signed-off-by: Myzel394 <50424412+Myzel394@users.noreply.github.com>
This commit is contained in:
Myzel394 2024-03-23 14:06:51 +01:00
parent 3db93cc96a
commit 39458bd76c
No known key found for this signature in database
GPG Key ID: DEC4AAB876F73185

View File

@ -54,7 +54,6 @@ fun VideoRecordingStatus(
when (orientation) {
Configuration.ORIENTATION_LANDSCAPE -> {
Box {
Row(
modifier = Modifier.fillMaxSize(),
horizontalArrangement = Arrangement.SpaceEvenly,
@ -89,10 +88,8 @@ fun VideoRecordingStatus(
}
}
}
}
else -> {
Box {
Column(
modifier = Modifier
.fillMaxSize()
@ -100,6 +97,8 @@ fun VideoRecordingStatus(
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.SpaceBetween,
) {
Box {}
Column(
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement
@ -121,7 +120,6 @@ fun VideoRecordingStatus(
}
}
}
}
}