skydoves / Cloudy

☁️ Jetpack Compose blur effect library, which falls back onto a CPU-based implementation to support older API levels.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can i use cloudy with Jetpack compose Popup?

VahidGarousi opened this issue · comments

Information

  • Haze version: 0.6.2
  • Platform: Android

Expected Behavior

image

Steps to Reproduce the Problem

Popup(
            properties = PopupProperties(
                dismissOnBackPress = true,
                dismissOnClickOutside = true,
                focusable = true,
                excludeFromSystemGesture = false
            ),
            popupPositionProvider = remember(traderLegendInformation.boundsInRoot) {
                LegendPopupOffsetPositionProvider(
                    traderLegendInformation.boundsInRoot,
                    triangleHeightInPx = triangleHeightInPx
                )
            },
            onDismissRequest = remember { { shouldShowTooltip = null } }
        ) {
            TooltipShowMoreLarge(
                text = traderLegendInformation.legend.title
            )
        }

Hey @VahidGarousi, for now, Cloudy doesn't support the window blurring feature. It's on my plans for the next release.