Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion add_to_app/books/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ page.
* If the `schema.dart` is modified, the generated classes can be updated with

```bash
flutter pub run pigeon --input pigeon/schema.dart \
dart run pigeon --input pigeon/schema.dart \
--dart_out lib/api.dart \
--objc_header_out ../ios_books/IosBooks/api.h \
--objc_source_out ../ios_books/IosBooks/api.m \
Expand Down
2 changes: 1 addition & 1 deletion add_to_app/books/flutter_module_books/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ in `pigeon/schema.dart` is updated, the generated classes can also be re-
generated using:

```shell
flutter pub run pigeon --input pigeon/schema.dart \
dart run pigeon --input pigeon/schema.dart \
--dart_out lib/api.dart \
--objc_header_out ../ios_books/IosBooks/api.h \
--objc_source_out ../ios_books/IosBooks/api.m \
Expand Down
2 changes: 1 addition & 1 deletion add_to_app/books/flutter_module_books/run_pigeon.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
flutter pub run pigeon --input pigeon/schema.dart \
dart run pigeon --input pigeon/schema.dart \
--dart_out lib/api.dart \
--objc_header_out ../ios_books/IosBooks/api.h \
--objc_source_out ../ios_books/IosBooks/api.m \
Expand Down
2 changes: 1 addition & 1 deletion desktop_photo_search/fluent_ui/tool/grind.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Future<void> generateJsonBindings() async => _logProcessOutput(

@Task()
Future<void> watch() async => _logProcessOutput(
Process.start('flutter', ['pub', 'run', 'build_runner', 'watch']),
Process.start('dart', ['run', 'build_runner', 'watch']),
);

@Task()
Expand Down
2 changes: 1 addition & 1 deletion desktop_photo_search/material/tool/grind.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Future<void> generateJsonBindings() async => _logProcessOutput(

@Task()
Future<void> watch() async => _logProcessOutput(
Process.start('flutter', ['pub', 'run', 'build_runner', 'watch']),
Process.start('dart', ['run', 'build_runner', 'watch']),
);

@Task()
Expand Down
4 changes: 2 additions & 2 deletions game_template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ lib

The state management approach is intentionally low-level. That way, it's easy to
take this project and run with it, without having to learn new paradigms, or having
to remember to run `flutter pub run build_runner watch`. You are,
to remember to run `dart run build_runner watch`. You are,
of course, encouraged to use whatever paradigm, helper package or code generation
scheme that you prefer.

Expand Down Expand Up @@ -522,7 +522,7 @@ To update the launcher icon, first change the files
Then, run the following:

```bash
flutter pub run flutter_launcher_icons:main
dart run flutter_launcher_icons:main
```

You can [configure](https://github.com/fluttercommunity/flutter_launcher_icons#book-guide)
Expand Down
2 changes: 1 addition & 1 deletion pedometer/ffigen.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Run with `flutter pub run ffigen --config ffigen.yaml`.
# Run with `dart run ffigen --config ffigen.yaml`.
name: PedometerBindings
description: "Bindings for CM pedometers"
language: objc
Expand Down
Loading