1500+ ready React Native mobile app screens

Affiliates

Flows and boilerplates

Multi-step flows ship a controller so you wire one component. Boilerplates are the scaffolds under everything else.

Three content types

TypeWhat it isHow it arrives
ScreenOne self-contained screen, one file plus the odd helper.Copy prompt
FlowAn ordered set of screens with a controller, such as a 4-step onboarding.Copy prompt
BoilerplateA complete, runnable Expo app. Not published yet.One CLI command

Flows ship their own controller

A flow is not four loose screens for you to sequence. It ships an index.tsx that owns the step index, the answers and the transition between steps, so you wire one component into navigation rather than four.

  • initialStep opens the flow part-way through, for deep links and resumed sessions.
  • onComplete fires after the last step, with whatever the flow collected.
import AuroraOnboarding from './components/aurora-onboarding'

<AuroraOnboarding
  onComplete={answers => {
    saveOnboarding(answers)
    router.replace('/home')
  }}
/>

Boilerplates are the scaffolds under everything else

The twelve published boilerplates are the pieces every app needs once and nobody enjoys writing twice: safe areas, the spacing scale, the type scale, elevation, pressable states, keyboard avoidance, haptics, list performance, error boundaries, and the colour and motion tokens. Each one ships the working implementation plus a demo that exercises it.

They copy exactly like a screen does. One prompt, the files in it, your agent writes them. Take these first if you are starting an app from nothing, because every screen in the library assumes they are already there.

A runnable app shell is a different thing, and is not here yet
A whole starter app is forty files plus native config, which needs a repo to clone rather than a prompt to paste. That is still being built, and nothing on the pricing page promises it until it exists.