You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I applied a blur effect to my Text Composables as such:
Cloudy { Text( modifier = Modifier.padding(2.dp), text = stringResource(id = previewTransaction.companyName), style = Typography.b1MediumTextStyle, color = Grey500 ) }
As it turns out after my loading indicator is gone, and the content is showed, the effect takes a bit of time to show up, or to be applied. I am wondering why is this happening. Is the implementation intended as such?
Expected Behavior:
I expect the blur effect to be applied immediately, or calculated as the views are being composed.
The text was updated successfully, but these errors were encountered:
Following. Even though it's not much but there is a slight delay between Loading and Success states. But I guess since Bitmap is being drawn, this might be unavoidable. Adding a sample for repro.
Please complete the following information:
Describe the Bug:
I applied a blur effect to my Text Composables as such:
Cloudy { Text( modifier = Modifier.padding(2.dp), text = stringResource(id = previewTransaction.companyName), style = Typography.b1MediumTextStyle, color = Grey500 ) }
As it turns out after my loading indicator is gone, and the content is showed, the effect takes a bit of time to show up, or to be applied. I am wondering why is this happening. Is the implementation intended as such?
Expected Behavior:
I expect the blur effect to be applied immediately, or calculated as the views are being composed.
The text was updated successfully, but these errors were encountered: