I used the jetpack compose dashPathEffect but it's not working on the Huawei device and android 8.1 but it's working fine on the real device and emulator android version 12. how can i fix it?
val pathEffect = PathEffect.dashPathEffect(floatArrayOf(10f, 5f), 0f)
Canvas(
Modifier.fillMaxWidth()
) {
drawLine(
color = AppColor.brandColor.BLUE_DE_FRANCE,
strokeWidth = 8f,
start = Offset(20f, 0f),
end = Offset(size.width - 20, 0f),
pathEffect = pathEffect
)
}
This is the result of android 8.1