skydoves / Cloudy

☁️ Jetpack Compose blur effect library, which falls back onto a CPU-based implementation to support older API levels.
Apache License 2.0
789 stars 28 forks source link

Can i use cloudy with Jetpack compose Popup? #23

Open VahidGarousi opened 4 months ago

VahidGarousi commented 4 months ago

Information

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
            )
        }
skydoves commented 1 month ago

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