blob: 494c451df1d034592fff2809bfeb36d0e66beaee [file] [log] [blame] [view]
Adam Barth576795d2015-11-08 21:33:00 -08001Contributing to Flutter
2=======================
3
4[![Build Status](https://travis-ci.org/flutter/flutter.svg)](https://travis-ci.org/flutter/flutter)
5
Ian Hicksoncffe4812016-12-10 21:46:57 -08006_See also: [Flutter's code of conduct](https://flutter.io/design-principles/#code-of-conduct)_
7
Adam Barth576795d2015-11-08 21:33:00 -08008Things you will need
9--------------------
10
Michael Goderbauer13edb322017-06-26 09:47:05 -070011 * Linux, Mac OS X, or Windows
Adam Barth576795d2015-11-08 21:33:00 -080012 * git (used for source version control).
Adam Barthf68343e2017-02-08 20:50:29 -080013 * An IDE. We recommend [IntelliJ with the Flutter plugin](https://flutter.io/intellij-ide/).
Adam Barth576795d2015-11-08 21:33:00 -080014 * An ssh client (used to authenticate with GitHub).
15 * Python (used by some of our tools).
Adam Barth576795d2015-11-08 21:33:00 -080016 * The Android platform tools (see [Issue #55](https://github.com/flutter/flutter/issues/55)
Adam Barthf4c62a82015-11-08 22:18:16 -080017 about downloading the Android platform tools automatically).
Ian Hickson82686642016-02-08 13:39:24 -080018 _If you're also working on the Flutter engine, you can use the
Adam Barthf4c62a82015-11-08 22:18:16 -080019 copy of the Android platform tools in
Ian Hickson82686642016-02-08 13:39:24 -080020 `.../engine/src/third_party/android_tools/sdk/platform-tools`._
Adam Barth576795d2015-11-08 21:33:00 -080021 - Mac: `brew install android-platform-tools`
22 - Linux: `sudo apt-get install android-tools-adb`
23
24Getting the code and configuring your environment
25-------------------------------------------------
26
27 * Ensure all the dependencies described in the previous section, in particular
Ian Hicksone23d7602016-02-15 10:46:24 -080028 git, ssh, and python are installed. Ensure that `adb`
29 (from the Android platform tools) is in your path (e.g.,
30 that `which adb` prints sensible output).
Adam Barth576795d2015-11-08 21:33:00 -080031 * Fork `https://github.com/flutter/flutter` into your own GitHub account. If
32 you already have a fork, and are now installing a development environment on
33 a new machine, make sure you've updated your fork so that you don't use stale
34 configuration options from long ago.
35 * If you haven't configured your machine with an SSH key that's known to github then
36 follow the directions here: https://help.github.com/articles/generating-ssh-keys/.
37 * `git clone git@github.com:<your_name_here>/flutter.git`
38 * `cd flutter`
39 * `git remote add upstream git@github.com:flutter/flutter.git` (So that you
40 fetch from the master repository, not your clone, when running `git fetch`
41 et al.)
Adam Barth576795d2015-11-08 21:33:00 -080042 * Add this repository's `bin` directory to your path. That will let you use the
Ian Hicksone23d7602016-02-15 10:46:24 -080043 `flutter` command in this directory more easily.
Lex Berezhny778742e2016-02-27 12:35:05 -050044 * Run `flutter update-packages` This will fetch all the Dart packages that
45 Flutter depends on. You can replicate what this script does by running
46 `pub get` in each directory that contains a `pubspec.yaml` file.
Greg Spencer797b39e2017-11-13 10:55:22 -080047 * If you plan on using IntelliJ as your IDE, then also run
48 `flutter ide-config --overwrite` to create all of the IntelliJ configuration
49 files so you can open the main flutter directory as a project and run examples
50 from within the IDE.
Adam Barth576795d2015-11-08 21:33:00 -080051
52Running the examples
53--------------------
54
Greg Spencer797b39e2017-11-13 10:55:22 -080055To run an example, switch to that example's directory, and use `flutter run`.
56Make sure you have an emulator running, or a device connected over USB and
57debugging enabled on that device.
Adam Barth576795d2015-11-08 21:33:00 -080058
Ali Ghassemi53c86e02016-05-20 13:06:03 -070059 * `cd examples/hello_world`
60 * `flutter run`
Adam Barth576795d2015-11-08 21:33:00 -080061
62You can also specify a particular Dart file to run if you want to run an example
63that doesn't have a `lib/main.dart` file using the `-t` command-line option. For
Ali Ghassemi705b5d12016-05-20 13:53:18 -070064example, to run the `widgets/spinning_square.dart` example in the [examples/layers](examples/layers)
Adam Barth576795d2015-11-08 21:33:00 -080065directory on a connected Android device, from that directory you would run:
Ali Ghassemi53c86e02016-05-20 13:06:03 -070066`flutter run -t widgets/spinning_square.dart`
Adam Barth576795d2015-11-08 21:33:00 -080067
68When running code from the examples directory, any changes you make to the
69example code, as well as any changes to Dart code in the
70[packages/flutter](packages/flutter) directory and subdirectories, will
71automatically be picked when you relaunch the app. You can do the same for your
72own code by mimicking the `pubspec.yaml` files in the `examples` subdirectories.
73
Ian Hickson895aaa92016-12-15 15:59:57 -080074Running the analyzer
75--------------------
76
Ian Hickson36e71382017-09-23 22:23:09 -070077When editing Flutter code, it's important to check the code with the
78analyzer. There are two main ways to run it. In either case you will
79want to run `flutter update-packages` first, or you will get bogus
80error messages about core classes like Offset from `dart:ui`.
Ian Hickson895aaa92016-12-15 15:59:57 -080081
Dan Rubel3a31c352017-08-15 08:46:42 -040082For a one-off, use `flutter analyze --flutter-repo`. This uses the `analysis_options_repo.yaml` file
Ian Hickson895aaa92016-12-15 15:59:57 -080083at the root of the repository for its configuration.
84
85For continuous analysis, use `flutter analyze --flutter-repo --watch`. This uses normal
Dan Rubel3a31c352017-08-15 08:46:42 -040086`analysis_options.yaml` files, and they can differ from package to package.
Ian Hickson895aaa92016-12-15 15:59:57 -080087
88If you want to see how many members are missing dartdocs, you should use the first option,
89providing the additional command `--dartdocs`.
90
91If you omit the `--flutter-repo` option you may end up in a confusing state because that will
92assume you want to check a single package and the flutter repository has several packages.
93
94
Adam Barth576795d2015-11-08 21:33:00 -080095Running the tests
96-----------------
97
Seth Laddd6dad952018-01-26 16:34:08 -080098To automatically find all files named `_test.dart` inside a package's `test/` subdirectory, and
99run them inside the flutter shell as a test, use the `flutter test` command, e.g:
Adam Barth576795d2015-11-08 21:33:00 -0800100
Eric Seidel723e5f72015-12-08 14:09:47 -0800101 * `cd examples/stocks`
Eric Seidel724388d2015-12-08 13:51:05 -0800102 * `flutter test`
Adam Barth576795d2015-11-08 21:33:00 -0800103
Eric Seidel723e5f72015-12-08 14:09:47 -0800104Individual tests can also be run directly, e.g. `flutter test lib/my_app_test.dart`
105
Seth Laddd6dad952018-01-26 16:34:08 -0800106Flutter tests use [package:flutter_test](https://github.com/flutter/flutter/tree/master/packages/flutter_test)
107which provides flutter-specific extensions on top of [package:test](https://pub.dartlang.org/packages/test).
Adam Barth576795d2015-11-08 21:33:00 -0800108
Seth Laddd6dad952018-01-26 16:34:08 -0800109`flutter test` runs tests inside the flutter shell. To debug tests in Observatory, use the `--start-paused`
110option to start the test in a paused state and wait for connection from a debugger. This option lets you
111set breakpoints before the test runs.
Eric Seidel723e5f72015-12-08 14:09:47 -0800112
Michael Goderbauer32271e92017-02-08 13:00:44 -0800113To run all the tests for the entire Flutter repository, the same way that Travis runs them, run `dart dev/bots/test.dart`.
Eric Seidel723e5f72015-12-08 14:09:47 -0800114
Seth Laddd6dad952018-01-26 16:34:08 -0800115If you've built [your own flutter engine](#working-on-the-engine-and-the-framework-at-the-same-time), you
116can pass `--local-engine` to change what flutter shell `flutter test` uses. For example,
Adam Barthb4002502016-05-31 10:28:25 -0700117if you built an engine in the `out/host_debug_unopt` directory, you can pass
118`--local-engine=host_debug_unopt` to run the tests in that engine.
Adam Barth576795d2015-11-08 21:33:00 -0800119
Ian Hickson895aaa92016-12-15 15:59:57 -0800120Flutter tests are headless, you won't see any UI. You can use
Ian Hickson34190682015-11-09 00:30:45 -0800121`print` to generate console output or you can interact with the DartVM
122via observatory at [http://localhost:8181/](http://localhost:8181/).
Adam Barth576795d2015-11-08 21:33:00 -0800123
124Adding a test
125-------------
126
Ian Hickson895aaa92016-12-15 15:59:57 -0800127To add a test to the Flutter package, create a file whose name
Ian Hickson7151fdd2015-12-15 22:32:45 -0800128ends with `_test.dart` in the `packages/flutter/test` directory. The
129test should have a `main` function and use the `test` package.
Adam Barth576795d2015-11-08 21:33:00 -0800130
xster606ee362017-01-25 19:00:06 -0800131Working with flutter tools
132--------------------------
133
krisgiesingb6185b62017-10-05 16:34:16 -0700134The flutter tool itself is built when you run `flutter` for the first time and each time
xster606ee362017-01-25 19:00:06 -0800135you run `flutter upgrade`. If you want to alter and re-test the tool's behavior itself,
136locally commit your tool changes in git and the tool will be rebuilt from Dart sources
137in `packages/flutter_tools` the next time you run `flutter`.
138
Michael Goderbauer7532a992017-08-10 08:46:56 -0700139Alternatively, delete the `bin/cache/flutter_tools.snapshot` file. Doing so will
140force a rebuild of the tool from your local sources the next time you run `flutter`.
141
xster606ee362017-01-25 19:00:06 -0800142flutter_tools' tests run inside the Dart command line VM rather than in the
Phil Quitslund82e18822017-12-14 06:01:28 -0800143flutter shell. To run the tests, ensure that no devices are connected,
144then navigate to `flutter_tools` and execute:
xster606ee362017-01-25 19:00:06 -0800145
Phil Quitslund82e18822017-12-14 06:01:28 -0800146```shell
Mikkel Nygaard Ravn9bc048c2018-02-08 22:15:08 +0100147../../bin/cache/dart-sdk/bin/pub run test -j1
Phil Quitslund82e18822017-12-14 06:01:28 -0800148```
xster606ee362017-01-25 19:00:06 -0800149
150The pre-built flutter tool runs in release mode with the observatory off by default.
151To enable debugging mode and the observatory on the `flutter` tool, uncomment the
152`FLUTTER_TOOL_ARGS` line in the `bin/flutter` shell script.
153
Adam Barth576795d2015-11-08 21:33:00 -0800154Contributing code
155-----------------
156
157We gladly accept contributions via GitHub pull requests.
158
Ian Hickson895aaa92016-12-15 15:59:57 -0800159Please peruse our
160[style guides](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo) and
161[design principles](https://flutter.io/design-principles/) before
162working on anything non-trivial. These guidelines are intended to
163keep the code consistent and avoid common pitfalls.
164
Adam Barth576795d2015-11-08 21:33:00 -0800165To start working on a patch:
166
167 * `git fetch upstream`
168 * `git checkout upstream/master -b name_of_your_branch`
Ian Hickson895aaa92016-12-15 15:59:57 -0800169 * Hack away.
Ian Hickson34190682015-11-09 00:30:45 -0800170 * `git commit -a -m "<your informative commit message>"`
Adam Barth576795d2015-11-08 21:33:00 -0800171 * `git push origin name_of_your_branch`
172
173To send us a pull request:
174
175* `git pull-request` (if you are using [Hub](http://github.com/github/hub/)) or
176 go to `https://github.com/flutter/flutter` and click the
177 "Compare & pull request" button
178
179Please make sure all your checkins have detailed commit messages explaining the patch.
Adam Barth576795d2015-11-08 21:33:00 -0800180
Ian Hicksonbe9dd4b2017-07-13 10:23:29 -0700181Once you've gotten an LGTM from a project maintainer and once your PR has received
182the green light from all our automated testing (Travis, Appveyor, etc), and once
183the tree is green (see the [design principles](https://flutter.io/design-principles/)
184document for more details), submit your changes to the `master` branch using one of
185the following methods:
yjbanov15e7bdb2016-02-02 11:17:16 -0800186
Ali Ghassemi53c86e02016-05-20 13:06:03 -0700187* Wait for one of the project maintainers to submit it for you.
yjbanov15e7bdb2016-02-02 11:17:16 -0800188* Click the green "Merge pull request" button on the GitHub UI of your pull
189 request (requires commit access)
yjbanov15e7bdb2016-02-02 11:17:16 -0800190
Adam Barth576795d2015-11-08 21:33:00 -0800191You must complete the
192[Contributor License Agreement](https://cla.developers.google.com/clas).
193You can do this online, and it only takes a minute.
194If you've never submitted code before, you must add your (or your
195organization's) name and contact info to the [AUTHORS](AUTHORS) file.
196
Ian Hicksoncffe4812016-12-10 21:46:57 -0800197We grant commit access to people who have gained our trust and demonstrated
198a commitment to Flutter.
199
krisgiesingb6185b62017-10-05 16:34:16 -0700200Tools for tracking and improving test coverage
201----------------------------------------------
Adam Barth56039c02016-06-23 13:43:42 -0700202
203We strive for a high degree of test coverage for the Flutter framework. We use
204Coveralls to [track our test coverage](https://coveralls.io/github/flutter/flutter?branch=master).
205You can download our current coverage data from cloud storage and visualize it
206in Atom as follows:
207
Adam Barth428023c2017-02-08 10:56:03 -0800208 * Install [Atom](https://atom.io/).
Adam Barth56039c02016-06-23 13:43:42 -0700209 * Install the [lcov-info](https://atom.io/packages/lcov-info) package for Atom.
Adam Barth10931af2016-06-23 16:31:25 -0700210 * Open the `packages/flutter` folder in Atom.
211 * Open a Dart file in the `lib` directory an type `Ctrl+Alt+C` to bring up the
212 coverage data.
213
214If you don't see any coverage data, check that you have an `lcov.info` file in
215the `packages/flutter/coverage` directory. It should have been downloaded by the
216`flutter update-packages` command you ran previously.
Adam Barth56039c02016-06-23 13:43:42 -0700217
Adam Barth46da9e82016-06-23 18:02:55 -0700218If you want to iterate quickly on improving test coverage, consider using this
219workflow:
220
221 * Open a file and observe that some line is untested.
222 * Write a test that exercises that line.
223 * Run `flutter test --merge-coverage path/to/your/test_test.dart`.
224 * After the test passes, observe that the line is now tested.
225
226This workflow merges the coverage data from this test run with the base coverage
227data downloaded by `flutter update-packages`.
228
Adam Barth56039c02016-06-23 13:43:42 -0700229See [issue 4719](https://github.com/flutter/flutter/issues/4719) for ideas about
230how to improve this workflow.
231
Adam Barth576795d2015-11-08 21:33:00 -0800232Working on the engine and the framework at the same time
233--------------------------------------------------------
234
235You can work both with this repository (flutter.git) and the Flutter
236[engine repository](https://github.com/flutter/engine) at the same time using
237the following steps.
238
2391. Follow the instructions above for creating a working copy of this repository.
240
2412. Follow the [contributing instructions](https://github.com/flutter/engine/blob/master/CONTRIBUTING.md)
242 for the engine repository to create a working copy of the engine. When you
243 create the `.gclient` file for the engine, be sure to create it in a
244 directory named `engine` that is a sibling of the directory in which you
245 cloned this repository. For example, if you cloned this repository into the
246 `/foo/bar/flutter` directory, you should create the `.gclient` file in the
247 `/foo/bar/engine` directory. The actual code from the engine repository will
248 end up in `/foo/bar/engine/src` because `gclient` creates a `src` directory
249 underneath the directory that contains the `.gclient` file.
250
2513. To run tests on your host machine, build one of the host configurations
Adam Barthb4002502016-05-31 10:28:25 -0700252 (e.g., `out/host_debug_unopt`). To run examples on Android, build one of the
253 Android configurations (e.g., `out/android_debug_unopt`).
Alexander Aprelev5373a832017-09-07 13:13:48 -0700254 When running on the device with `--preview-dart-2` flag you will still need
255 to build corresponding host configuration (e.g., `out/host_debug_unopt` if you
256 are using `out/android_debug_unopt`, `out/host_release` if you use `out/android_release`).
257 Host configuration provides standalone dart sdk for the engine, that is used
258 to run engine dart scripts on the host.
Adam Barth576795d2015-11-08 21:33:00 -0800259
Ian Hickson34190682015-11-09 00:30:45 -0800260You should now be able to run the tests against your locally built
Adam Barthb4002502016-05-31 10:28:25 -0700261engine using the `flutter test --local-engine=host_debug_unopt` command. To run
262one of the examples on your device using your locally built engine, use the
263`--local-engine=android_debug_unopt` option to the `flutter` tool:
Adam Barth576795d2015-11-08 21:33:00 -0800264
Adam Barthb4002502016-05-31 10:28:25 -0700265 * `flutter run --local-engine=android_debug_unopt`
Adam Barth576795d2015-11-08 21:33:00 -0800266
267Making a breaking change to the engine
268--------------------------------------
269
krisgiesing3dfdf4b2016-03-15 13:16:48 -0700270If you make a breaking change to the engine, you'll need to land your change in a
Adam Barth576795d2015-11-08 21:33:00 -0800271few steps:
272
2731. Land your change in the engine repository.
274
2752. Publish a new version of the engine that contains your change. See the
276 engine's [release process](https://github.com/flutter/engine/wiki/Release-process)
277 for instructions about how to publish a new version of the engine. Publishing
278 a new version is important in order to not break folks using prebuilt
279 binaries in their workflow (e.g., our customers).
280
2813. Land a change that update our dependency on the `sky_engine` and
282 `sky_services` packages to point to the new version of the engine that you
283 just published. These dependencies are defined by [packages/flutter/pubspec.yaml](packages/flutter/pubspec.yaml).
284 After changing the `pubspec.yaml` file, you'll need to run
Jason Simmons587a6e82015-11-10 16:06:09 -0800285 `./dev/update_packages.dart` to update all the packages in this repository to
Adam Barth576795d2015-11-08 21:33:00 -0800286 see the new dependency. As part of landing this change, you should make
287 whatever other changes are needed in this repository to account for your
288 breaking change.
Mikkel Nygaard Ravn9bc048c2018-02-08 22:15:08 +0100289
Seth Laddd6dad952018-01-26 16:34:08 -0800290API docs for master branch
291--------------------------
292
293To view the API docs for the `master` branch,
294visit https://master-docs-flutter-io.firebaseapp.com/.
295
296Those docs should be updated after a successful CI build
297of Flutter's `master` branch.
298
299(Looking for the API docs for our releases?
300Please visit https://docs.flutter.io.)
Yegorbf4409f2017-12-06 17:30:44 -0800301
302Build infrastructure
303--------------------
304
305We build and test Flutter on:
306
307- Travis ([details](.travis.yml))
308- AppVeyor ([details](appveyor.yml))
309- Chromebots (a.k.a. "recipes", [details](dev/bots/README.md))
Leaf Petersen1dca1b22018-01-11 08:55:14 -0800310- Devicelab (a.k.a. "cocoon", [details](dev/devicelab/README.md))