The native app version of spool coder
This project excludes auto-generated platform folders from version control. When setting up the project or adding new platforms, follow these steps:
After cloning the repository, you'll need to generate the platform folders:
# Get dependencies
flutter pub get
# Create platform folders (choose what you need)
flutter create --platforms android,ios,windows,macos,linux,web .
flutter create --platform android .
flutter create --platform ios .
flutter create --platform windows .
flutter create --platform macos .
flutter create --platform linux .
flutter create --platform web .
flutter create --platforms android,ios,windows,macos,linux,web .
- Platform folders are auto-generated and should not be committed
- Any platform-specific customizations will need to be documented separately
- CI/CD pipelines should include platform generation steps
- Team members must run the platform creation commands after cloning
After creating platforms:
# Run on available platform
flutter run
# Build for specific platform
flutter build android
flutter build windows
flutter build web