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.
How to export
Section titled “How to export”-
Open the Export section
Go to Workspace → Export.
-
Click “Export Source Code”
The export takes 1–2 minutes to generate.
-
Download the zip file
Save it to your computer and extract.
What you get
Section titled “What you get”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 keystore —
android/app/upload-keystore.p12andandroid/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.
Opening the project
Section titled “Opening the project”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
Running locally
Section titled “Running locally”You need the Flutter SDK installed on your machine.
cd my-exported-appflutter pub getflutter runThis launches the app on a connected device or emulator.
What you can do with the code
Section titled “What you can do with the code”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 Export vs. PWA Export
Section titled “Code Export vs. PWA Export”| Code Export | PWA Export | |
|---|---|---|
| What you get | Full Flutter source code | Compiled web build (HTML/CSS/JS) |
| Can modify code | Yes | No (compiled output) |
| Can build for all platforms | Yes (Android, iOS, Web) | Web only |
| Requires Flutter SDK | Yes | No |
| Use case | Continue development independently | Self-host a web version |
See PWA Export if you only need the compiled web files for hosting.