Blog Mobile UX 13 min read

Mobile App Image Fallbacks: Avatars, Cards, and Offline States

Design mobile image fallbacks for avatars, feed cards, thumbnails, unavailable media, and offline states without collapsing the app UI.

Mobile image fallbackApp image placeholderAvatar fallback mobileOffline image fallback
Mobile App Image Fallbacks: Avatars, Cards, and Offline States

Mobile fallbacks should be designed by surface: avatars, feed cards, previews, products, and offline media states.

Remote fallback.pics URLs are useful for stable app placeholders, but offline-critical screens should also have local bundled fallback assets.

Search intent

Mobile image fallback is a product state

Mobile apps show images in compressed, repeated spaces: avatars, feed cards, product tiles, chat attachments, thumbnails, and saved previews. When those images fail, the app can quickly look broken or hard to scan.

A useful mobile fallback separates loading, missing, failed, and offline states. Each state needs the right visual treatment and the right network assumption.

Avatars

Use compact avatar fallbacks

Avatar fallbacks should be stable, compact, and generic. Use initials only when they are public-safe; otherwise use a generic label such as User or Team.

Keep the remote fallback URL aligned with any local offline avatar asset so profile menus, comments, and account switchers feel consistent.

Implementation text
User avatar:
https://fallback.pics/api/v1/avatar/96/18181B/FFFFFF?text=User

Team avatar:
https://fallback.pics/api/v1/avatar/128/3B82F6/FFFFFF?text=Team

Cards

Keep feed cards stable when thumbnails are missing

Feeds and card lists are highly sensitive to uneven media. If one thumbnail collapses, every text line below it can shift and tap targets can move.

Match the fallback URL to the card ratio. Use 16:9 for article and video cards, 1:1 for product grids, and 4:3 for compact recommendations.

Implementation text
Article feed card:
https://fallback.pics/api/v1/800x450/18181B/FFFFFF?text=Article+Image

Product card:
https://fallback.pics/api/v1/800x800/18181B/FFFFFF?text=Product+Image

Recommendation card:
https://fallback.pics/api/v1/600x450/F3F4F6/18181B?text=Preview

React Native

Use a fallback source when the image URL is empty or fails

In React Native, handle missing source data before rendering and use an error callback for failed remote images. The exact image component may vary by app, but the state model should stay the same.

For critical offline experiences, ship a bundled local placeholder too. Remote fallback URLs are useful when the network is available; local assets are safer before the network or cache exists.

Implementation tsx
const fallbackSrc = {
  uri: 'https://fallback.pics/api/v1/800x450/18181B/FFFFFF?text=Image+Unavailable',
};

function MobileCardImage({ imageUrl }) {
  const [source, setSource] = useState(imageUrl ? { uri: imageUrl } : fallbackSrc);
  return <Image source={source} onError={() => setSource(fallbackSrc)} />;
}

Offline

Design offline fallback as a cache-first flow

Offline states should prefer previously cached images when they are available. If the image has never been cached, show an intentional unavailable state instead of an empty rectangle.

A remote fallback URL cannot load while the device is truly offline unless it is already cached. Use local assets for offline-critical screens.

Privacy

Keep mobile fallback URLs safe for logs

Mobile apps produce crash reports, network logs, analytics events, proxy captures, support screenshots, app-store review videos, and QA recordings.

Treat placeholder URLs as public values. Do not include secrets, access tokens, private customer values, health data, financial data, exact addresses, order IDs, account IDs, device identifiers, or unreleased business details in fallback URL text.

Key takeaways

What to standardize before shipping

  • Separate loading, missing, failed, and offline image states.
  • Use fallback.pics URLs for stable remote placeholders, CMS-driven content, web views, and shared preview surfaces.
  • Use local bundled assets for screens that must work before the network or cache is available.
  • Keep mobile placeholder URL text generic, public-safe, and reusable across logs and support screenshots.
  • Centralize fallback behavior in shared mobile image primitives.

Production fallback layer

Use fallback.pics anywhere an image URL is accepted.

Start with one deterministic URL and standardize fallback behavior across your design system.

Read the docs