-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
I am using a CompositionLocalProvider like
CompositionLocalProvider(
LocalWindowDpSize provides rememberWindowDpSize(),
LocalWindowLayoutInfo provides windowLayoutInfoState.value,
LocalPosture provides postureState.value
)
and in my composable
LocalWindowLayoutInfo.current.isSeparating is always false
and
val foldingFeature = LocalWindowLayoutInfo.current.findFoldingFeature()
if (foldingFeature?.state != FoldingFeature.State.HALF_OPENED) {
Text(
stringResource(screen.resourceId),
maxLines = 1,
style = SlackCloneTypography.overline,
)
}
foldingFeature?.state is always null.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers