Create a local project
Nowa isnβt only available in your browser β you can also use Nowa Desktop, a dedicated app for macOS and Windows.
With Nowa Desktop, you can create and manage your local Flutter projects right on your computer.
This guide will walk you through downloading Nowa, setting up Flutter, and starting your first local project.
Downloading Nowa Desktopβ
Iβll show you how to download Nowa Desktop.
-
Log in on the Web
Go to app.nowa.dev in your browser and log in to your Nowa account. -
Download the App
Click on Download for Desktop and choose the version that matches your system (macOS or Windows). -
Install
Once downloaded, follow the installation instructions for your operating system.
Setting up Flutter SDKβ
To run local projects, Nowa Desktop needs the Flutter SDK installed on your computer. You can let Nowa install everything for you automatically, or point it to an existing Flutter install manually.
Install Flutter automatically (recommended)β
Nowa can download and configure Flutter and the Android toolchain for you β no terminal required.
-
Open Local Setup
In Nowa Desktop, click the βοΈ Settings icon, then go to the Local Setup tab. Under Automatic setup, click Set up automatically.

-
Download Flutter
Optionally choose an install location, or leave it as is to let Nowa use its own default folder (the path must not contain spaces). Then accept the licenses and click Install next to Flutter. The Flutter SDK is about 1 GB to download and installs the tools (about 10 GB) into the chosen folder.

-
Wait for the download to finish
Nowa downloads and unpacks the Flutter SDK. You can follow the progress in the dialog.

-
Verify the setup
Once Flutter is installed, Nowa moves to the Verify step and runsflutter doctorto check your environment.

When it finishes, you'll see what
flutter doctorreports and which devices you can run on (for example iOS, macOS, and Chrome).

-
(Optional) Install the Android toolchain
The Android toolchain is only needed to build Android apps, and the emulator is optional too. Click Install to add them, or Skip for now if you only target web or desktop β you can always add them later from Settings β Environment.

Once they're installed, the toolchain and emulator show as Ready Β· Managed by Nowa. Click Done to finish.

Nowa downloads these tools from Google and the Eclipse Foundation. By installing, you agree to their licenses and acknowledge their privacy policies.
Set up Flutter manuallyβ
If you already have Flutter installed, you can point Nowa to it instead.
-
Install Flutter SDK
Download it from the official Flutter website and follow the steps to install. -
Connect Flutter to Nowa Desktop
- Open Nowa Desktop and log in.
- Click the βοΈ Settings icon in the bottom-left corner.
- Go to the Local Setup tab.
- Point Nowa to your Flutter SDK folder (the one containing
bin). - (Optional) Choose a default folder where your projects will be saved.
- (Optional) Add your VS Code path if you want smooth integration.


Why use Nowa Desktop?β
Nowa Desktop gives you extra power compared to the web version:
- Better performance β runs natively on your computer.
- Local projects β your apps are standard Flutter projects, so you can use VS Code, GitHub, Copilot, and other tools with them.
- Cross-platform testing β run your app on Android, iOS, Web, or Desktop simulators.
- Offline mode β build and edit even without internet access.
Good to know: Nowa Desktop is available for all users β no premium plan required.
Creating your first local projectβ
Once Nowa Desktop is set up, you can start creating your first local project.
-
In the sidebar, go to Your Projects β Local Projects.

-
Click New Local Project.

-
Choose New Local Project from the dropdown.

-
Fill in your project details:
- Give your project a name.
- The package name is created automatically.
- Browse and select where you want to save the project.

-
Confirm the folder and click Create.


Nowa will generate a ready-to-use Flutter project with all the files you need.
