Skip to content

Code Export

Code Export gives you the full Flutter source code for your project. Download it, open it in any IDE, and continue development on your own terms.

Requires a paid plan (Build, Grow, or Scale). See Plans & Pricing for details.

  1. Open the Export section

    Go to Workspace → Export.

  2. Click “Export Source Code”

    The export takes 1–2 minutes to generate.

  3. Download the zip file

    Save it to your computer and extract.

A complete Flutter project with the standard project structure:

  • All screens and UI components
  • Navigation and routing
  • State management logic
  • Business logic and data models
  • Assets (images, fonts, icons)
  • Dependencies defined in pubspec.yaml
  • Android upload keystoreandroid/app/upload-keystore.p12 and android/key.properties (contains the keystore password). This is the signing key used to sign your AAB for Google Play upload.

This is the same code Primio uses to generate your preview and builds. It’s real, production-ready Flutter/Dart code.

Open the extracted folder in your preferred IDE:

  • VS Code — File → Open Folder → select the extracted directory
  • Android Studio — File → Open → select the extracted directory
  • IntelliJ IDEA — with the Flutter plugin installed, same as Android Studio

You need the Flutter SDK installed on your machine.

Terminal window
cd my-exported-app
flutter pub get
flutter run

This launches the app on a connected device or emulator.

The code is yours completely. You can:

  • Modify any screen, feature, or behavior
  • Add custom packages and dependencies
  • Integrate with your own backend
  • Hand it off to a developer or team
  • Publish it through your own build pipeline
  • Use it as a starting point for a larger project
Code ExportPWA Export
What you getFull Flutter source codeCompiled web build (HTML/CSS/JS)
Can modify codeYesNo (compiled output)
Can build for all platformsYes (Android, iOS, Web)Web only
Requires Flutter SDKYesNo
Use caseContinue development independentlySelf-host a web version

See PWA Export if you only need the compiled web files for hosting.