AniUI Pro
Docs/Getting started

Add Pro to your project

Drop in your purchased kits, blocks, boilerplates, and templates.

Once AniUI is installed, adding Pro is just dropping in the files you bought. Nothing to npm-install — Pro is source code you own.

Get your downloads

  1. Sign in at /sign-in with the email you purchased with.
  2. Go to /dashboard/downloads — every entitled product has a Download button.
  3. Each download is a fresh signed URL. Don't share the URL — it expires.

Drop a template into your project

Each template unzips to a flat directory of screens. Copy the directory into your Expo app's routing structure:

# Example: drop the Auth kit into your project
unzip auth-kit.zip -d ./app/(auth)

Each screen is a single self-contained file. Open one up — the imports are pure AniUI primitives, so it should compile immediately.

Drop a Pro Block

Blocks are smaller — single components like a hero, a pricing card, an auth form. Copy the file into your components/ directory and import as you normally would:

import { HeroSplitImage } from "@/components/hero-split-image";

export default function Landing() {
  return <HeroSplitImage />;
}

Drop a Boilerplate or Template

Boilerplates and Templates are full Expo projects, not drop-in files. Don't copy them into an existing app — extract the ZIP as a standalone project and run npm install at its root.

What's NOT included

  • The AniUI library itself (install separately — it's free)
  • Backend code (you bring your own API, auth provider, payments)
  • Native modules outside Expo's core SDK

Next: activate your license so you receive every future update.