You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/docs/commands/test.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ For example, if you wish to run `flutter test --no-track-widget-creation` you ca
57
57
58
58
### Tests without pub install
59
59
60
-
Unlike `dart test` or `flutter test`, `very_good test` will always run your tests without installing the projects dependencies (i.e. `--no-pub` flag).
60
+
Unlike `dart test` or `flutter test`, `very_good test` will always run your tests without installing the project's dependencies (i.e. `--no-pub` flag).
61
61
62
62
This is an optimization done by the CLI because dependency installation is usually run once after cloning the repository. Conversely, running tests locally is usually done many times and it's often unnecessary to re-install dependencies prior to each test run.
Copy file name to clipboardExpand all lines: site/docs/resources/syntax_changes_in_0_10_0.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ sidebar_position: 3
6
6
7
7
The syntax of the `very_good create` command changed in v0.10.0.
8
8
9
-
Previously, the `very_good_cli` would receive the template type via a `-t` flag. Now,`very_good_cli` receives sub-commands for each template. This makes it easier for us to support multiple templates and streamlines the command step for users.
9
+
Previously, the `very_good_cli` would receive the template type via a `-t` flag. Now,`very_good_cli` receives sub-commands for each template. This makes it easier for us to support multiple templates and streamlines the command step for users.
10
10
11
11
Refer to the following examples to better understand the syntax changes:
Copy file name to clipboardExpand all lines: site/docs/templates/core.md
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,17 +14,15 @@ We liked the [starter app][counter_app_link] provided by the `flutter create` co
14
14
15
15
## App Features ✨
16
16
17
-
-**Multi-Platform Support** - Support for iOS, Android, Web, and Windows (macOS and Linux coming soon!)
17
+
-**Multi-Platform Support** - Support for iOS, Android, Web, Windows, macOS, and Linux
18
18
19
19
-**Build Flavors** - Multiple flavor support for development, staging, and production
20
20
21
21
-**Internationalization Support** - Internationalization support using synthetic code generation to streamline the development process
22
22
23
-
-**Sound Null Safety** - No more null-dereference exceptions at runtime. Develop with a sound, static type system.
24
-
25
23
-**[Bloc][bloc_pub]** - Layered architecture with `bloc` for scalable, testable code which offers a clear separation between business logic and presentation
26
24
27
-
-**Testing** - Unit and widget tests with 100% line coverage (integration tests coming soon!)
25
+
-**Testing** - Unit and widget tests with 100% line coverage
28
26
29
27
-**Logging** - Extensible logging to capture uncaught Dart and Flutter exceptions
30
28
@@ -48,7 +46,7 @@ dart pub global activate very_good_cli
48
46
49
47
### Create a new Flutter Project 🆕
50
48
51
-
Then, you can use the `very_good create flutter_app` command just like you would `flutter create`. If desired, can specify a custom org name at time of generation with the `--org` flag.
49
+
Then, you can use the `very_good create flutter_app` command just like you would `flutter create`. If desired, you can specify a custom org name at time of generation with the `--org` flag.
52
50
53
51
:::tip
54
52
Use `-o` or `--output-directory` to specify a custom output directory for the generated project.
@@ -70,11 +68,11 @@ very_good create flutter_app . --desc "My new Flutter app"
70
68
71
69
### Running the Project ⚡
72
70
73
-
Once you have finished running `very_good create` with the project directory of your choice, you can change directories into the new project directory and install the dependencies
71
+
Once you have finished running `very_good create` with the project directory of your choice, you can change directories into the new project directory and install the dependencies.
0 commit comments