Hi, does anyone know how to get rid of the dark fl...
# compose
m
Hi, does anyone know how to get rid of the dark flickering when changing color from transparent to custom?
Copy code
val background by animateColorAsState(
    targetValue = if (isStartingPosition) {
        AppTheme.colors.transparent 
    } else{
        AppTheme.colors.background.copy(alpha = 0.95f)
    },
    animationSpec = tween(durationMillis = 2000,delayMillis = 40,easing = LinearEasing)
)