Flutter
Quick start
Section titled “Quick start”tinkerise mobile flutter my_flutter_app --platforms android,iosWhen to use
Section titled “When to use”Use flutter when you want one codebase targeting multiple mobile platforms.
Prerequisites
Section titled “Prerequisites”- Flutter
>=3.10.0
First run after scaffold
Section titled “First run after scaffold”cd my_flutter_appflutter pub getflutter runUnified flags
Section titled “Unified flags”--platforms <list>->--platforms <list>--no-install->--no-pub
Framework-specific behavior
Section titled “Framework-specific behavior”- tinkerise delegates to
flutter create. - Runtime checks validate Flutter directly (separate Dart install is not required).
- Passthrough args are supported.
--platformsmaps directly to Flutter’s native platform targeting.--no-installmaps to--no-pubso dependency fetching can be deferred.
Generated output
Section titled “Generated output”You get a standard Flutter app scaffold, including:
lib/Dart source entrypoint (main.dart)- Platform directories based on selected targets (
android/,ios/, and others) pubspec.yamldependency manifest and project metadata- Test starter files and generated native host wrappers
Related enhancements
Section titled “Related enhancements”- Environment templates for secrets/config:
/guides/enhancements/env/ - CI automation for mobile build checks:
/guides/enhancements/ci/
See full command flags
Section titled “See full command flags”See full CLI flags: /reference/commands/