Skip to content

Flutter

Terminal window
tinkerise mobile flutter my_flutter_app --platforms android,ios

Use flutter when you want one codebase targeting multiple mobile platforms.

  • Flutter >=3.10.0
Terminal window
cd my_flutter_app
flutter pub get
flutter run
  • --platforms <list> -> --platforms <list>
  • --no-install -> --no-pub
  • tinkerise delegates to flutter create.
  • Runtime checks validate Flutter directly (separate Dart install is not required).
  • Passthrough args are supported.
  • --platforms maps directly to Flutter’s native platform targeting.
  • --no-install maps to --no-pub so dependency fetching can be deferred.

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.yaml dependency manifest and project metadata
  • Test starter files and generated native host wrappers

See full CLI flags: /reference/commands/