Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Report issue #574

Merged
merged 2 commits into from
May 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.systemBarsPadding
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
Expand Down Expand Up @@ -71,8 +73,7 @@ private fun ReportScreen3(
) {
FfSurface {
Column(
modifier =
Modifier
modifier = Modifier
.fillMaxHeight()
.systemBarsPadding(),
) {
Expand Down Expand Up @@ -154,8 +155,8 @@ private fun MiddleContent(
reportInteractions: ReportScreen3Interactions,
) {
Column(
modifier =
modifier
modifier = modifier
.verticalScroll(rememberScrollState())
.padding(16.dp),
) {
Text(
Expand Down