Question

React Native: images flash white before loading

Solved · 9 views · asked by ben_mobile · edited

Every list image goes white → image. Looks broken.

What I’ve tried

Added a placeholder color. Still flashes.

Comment

1 answer

Marked as helpful by the asker
ben_mobile · edited

Use expo-image with placeholder={blurhash} and transition={200}, and set explicit width/height so layout does not shift. The white flash is the Image component mounting with no source dimensions; blurhash gives it something to show while loading.

Comment