Question

React Native: images flash white before loading

Solved · 416 viewsasked by ben_mobile

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

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