Introduction

Requirements

System Requirements

Nylo Website v7 requires the following minimum versions:

Requirement Minimum Version
Flutter 3.24.0 or higher
Dart SDK 3.10.7 or higher

Platform Support

Nylo Website supports all platforms that Flutter supports:

Platform Support
iOS ✓ Full support
Android ✓ Full support
Web ✓ Full support
macOS ✓ Full support
Windows ✓ Full support
Linux ✓ Full support

Installing Flutter

If you don't have Flutter installed, follow the official installation guide for your operating system:

Verifying Your Installation

After installing Flutter, verify your setup:

Check Flutter Version

flutter --version

You should see output similar to:

Flutter 3.24.0 • channel stable
Dart SDK version: 3.10.7

Update Flutter (if needed)

If your Flutter version is below 3.24.0, upgrade to the latest stable release:

flutter channel stable
flutter upgrade

Run Flutter Doctor

Verify your development environment is properly configured:

flutter doctor -v

This command checks for:

  • Flutter SDK installation
  • Android toolchain (for Android development)
  • Xcode (for iOS/macOS development)
  • Connected devices
  • IDE plugins

Fix any issues reported before proceeding with Nylo Website installation.

Set Up an Editor

Choose an IDE with Flutter support:

Visual Studio Code (Recommended)

VS Code is lightweight and has excellent Flutter support.

  1. Install VS Code
  2. Install the Flutter extension
  3. Install the Dart extension

Setup guide: VS Code Flutter Setup

Android Studio

Android Studio provides a full-featured IDE with built-in emulator support.

  1. Install Android Studio
  2. Install the Flutter plugin (Preferences → Plugins → Flutter)
  3. Install the Dart plugin

Setup guide: Android Studio Flutter Setup

IntelliJ IDEA

IntelliJ IDEA (Community or Ultimate) also supports Flutter development.

  1. Install IntelliJ IDEA
  2. Install the Flutter plugin (Preferences → Plugins → Flutter)
  3. Install the Dart plugin

Once your editor is configured, you're ready to install Nylo Website.