iOS Hardware + UIUpdated April 2026

The Dynamic Island,
explained for builders

The Dynamic Island is the pill-shaped hardware + UI around the front camera on newer iPhones. It is the display surface for Live Activities — the data layer.

Quick answer

The Dynamic Island is iOS's name for the area around the front camera on iPhone 14 Pro and every iPhone 15+ model. It morphs around the camera cutout to host Live Activities, audio sessions, calls, Face ID, charging, and other ongoing system signals. Apps do not draw to it directly — you ship a Live Activity and the system renders the right Dynamic Island view automatically.

What Is the Dynamic Island?

The Dynamic Island is Apple's solution to the front-camera cutout. Rather than hide the sensor housing or treat it as a notch, iOS treats the dark area around the camera as a UI element — a small, fluid surface that can grow, shrink, split, and morph to display useful information.

Mechanically it is OLED pixels around a camera and Face ID housing. Functionally it is a system-managed UI region that any app can fill via ActivityKit and WidgetKit.

Two important framings:

  • It is not a separate display. It is part of the main screen, rendered with the rest of iOS.
  • It is not freely drawable. Apps configure Live Activities; iOS decides exactly when and how to show them in the island.

Which iPhones Have the Dynamic Island?

iPhone 14 Pro / 14 Pro Max (2022)

The first iPhones to ship with the Dynamic Island. Pro models only.

iPhone 15 / Plus / Pro / Pro Max

Dynamic Island on every model — Apple removed the notch from the entire lineup.

iPhone 16 series

Dynamic Island standard across all four models, plus the new Camera Control button.

iPhone 17 / 17 Pro / 17 Pro Max / iPhone Air

Dynamic Island on every model, including the ultra-thin iPhone Air.

iPhone 18 series (current)

Dynamic Island remains the system-wide standard.

iPhone SE / older non-Pro

No Dynamic Island. iPhone SE (3rd gen and earlier) uses a Touch ID home button; iPhone 14 / 13 / 12 use a notch.

The Three Display States

The Dynamic Island has three system-managed states. Your Live Activity provides the views; iOS picks which state to render.

1

Compact

Small leading and trailing pieces wrapped tight around the camera. Always shown when one activity is in progress. Examples: a small Apple Maps arrow, a phone-call timer, a Now-Playing icon.

2

Minimal

A small dot or icon shown when more than one Live Activity is active and the user is focused on another app. Tap to swap which activity gets the compact view.

3

Expanded

The big version. Shown automatically for important updates (incoming call, Face ID failure) and on long-press of the compact view. This is where you put rich content like maps, controls, scores.

What the Dynamic Island Can Show

Live Activities

The main third-party use case. Rides, deliveries, sports, timers, workouts, travel.

Now Playing

Music, podcasts, audiobooks, AirPods battery, AirPlay device.

Calls

Active phone, FaceTime, and CallKit-based VoIP calls (e.g. WhatsApp, Zoom).

System indicators

Face ID, Touch ID prompts, AirDrop, charging, screen recording, location use, microphone use.

Timers and alarms

Active iOS Timer or alarm with quick-pause control.

Personal Hotspot, Focus, and Shortcuts

Connection status, Focus changes, Shortcut output snippets.

How Apps Build for the Dynamic Island

You do not target the Dynamic Island directly — you target a Live Activity and the system renders it on the island for you. The flow:

  1. Add a WidgetKit extension to your iOS app and define an ActivityAttributes type.
  2. Inside ActivityConfiguration, declare the Dynamic Island compact leading, compact trailing, minimal, and expanded views — all with SwiftUI.
  3. Start the activity from your app with Activity.request(...) when the relevant event begins.
  4. Update locally with Activity.update(...) or via APNs push of type liveactivity.
  5. End it with Activity.end(...) when the event finishes.

For the full breakdown, read the iOS Live Activities guide.

Dynamic Island vs Notch

Notch (iPhone X – 14)

Static cutout. The screen treats it as unusable space. Only the system shows hints around it (e.g. green/orange privacy dots).

Dynamic Island (iPhone 14 Pro+)

Active region. Software treats the area around the camera as a UI surface that can morph and host content via Live Activities.

Practically: design your widgets and Live Activities so they degrade gracefully on notched devices — the Lock Screen Live Activity still renders, but there is no Dynamic Island.

Is There a Dynamic Island on Android?

Not officially. Some Android skins have shipped “Dynamic Island” lookalikes (Samsung One UI, Realme, vivo, Asus) that put a software pill near the camera, but these are vendor-specific and not part of stock Android.

The official Android answer to ambient, in-place updates is closer to ongoing notifications and the newer Live Updates in Material You.

Frequently Asked Questions

What is the Dynamic Island on iPhone?

The Dynamic Island is the pill-shaped area around the front camera on newer iPhones. Apple turned the camera cutout into a hardware-plus-UI feature that hosts Live Activities, ongoing audio, calls, timers, and quick interactions. It expands and contracts smoothly via the system’s Springboard animations.

Which iPhones have the Dynamic Island?

iPhone 14 Pro, iPhone 14 Pro Max, every model in the iPhone 15 / 16 / 17 / 18 lineup (Pro and non-Pro), and the iPhone Air. Older models (including iPhone 14 and earlier non-Pro) use a notch and do not have the Dynamic Island.

What can the Dynamic Island display?

It hosts Live Activities (rides, deliveries, sports, timers), ongoing audio (Music, podcasts, AirPods status), calls, Face ID, AirDrop, charging indicators, screen-recording state, Personal Hotspot, and many other system signals.

What are the three Dynamic Island states?

Compact (small left + right pieces around the camera), Minimal (a tiny dot when more than one activity is active), and Expanded (the full-size view shown on long-press or when there is significant new content).

Can I build for the Dynamic Island?

Yes — but indirectly. You do not draw to the Dynamic Island directly. You define a Live Activity using ActivityKit and WidgetKit, and the system renders the appropriate compact/minimal/expanded view inside the Dynamic Island automatically.

Does the Dynamic Island work on iPad or Mac?

No. The Dynamic Island is iPhone-only. iPads and Macs surface similar information through the menu bar, control center, and notification system instead.

Build an app that lives in the Dynamic Island.

Newly generates a real native iOS + Android app from your prompt — Live Activities, Dynamic Island, push, and widgets included.