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.
- Install VS Code
- Install the Flutter extension
- Install the Dart extension
Setup guide: VS Code Flutter Setup
Android Studio
Android Studio provides a full-featured IDE with built-in emulator support.
- Install Android Studio
- Install the Flutter plugin (Preferences → Plugins → Flutter)
- Install the Dart plugin
Setup guide: Android Studio Flutter Setup
IntelliJ IDEA
IntelliJ IDEA (Community or Ultimate) also supports Flutter development.
- Install IntelliJ IDEA
- Install the Flutter plugin (Preferences → Plugins → Flutter)
- Install the Dart plugin
Once your editor is configured, you're ready to install Nylo Website.