Merge only text.

Change-Id: I36eefc6dd9f56f7a1f63003f0f95f6755ae16def
pull/1309/head
Jaehwa Noh 1 year ago
parent 5401baae60
commit d7ac889b2b

@ -77,6 +77,7 @@ import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.semantics.clearAndSetSemantics
import androidx.compose.ui.semantics.semantics
import androidx.compose.ui.semantics.stateDescription
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.tooling.preview.PreviewParameter
import androidx.compose.ui.unit.dp
@ -272,7 +273,10 @@ private fun LazyStaggeredGridScope.onboarding(
is OnboardingUiState.Shown -> {
item(span = StaggeredGridItemSpan.FullLine, contentType = "onboarding") {
Column(
modifier = interestsItemModifier
modifier = interestsItemModifier,
) {
Column(
modifier = Modifier
.semantics(mergeDescendants = true) { },
) {
Text(
@ -291,6 +295,7 @@ private fun LazyStaggeredGridScope.onboarding(
textAlign = TextAlign.Center,
style = MaterialTheme.typography.bodyMedium,
)
}
TopicSelection(
onboardingUiState,
onTopicCheckedChanged,

Loading…
Cancel
Save