- 02 Jun, 2020 1 commit
-
-
Jenn Magder authored
-
- 15 Apr, 2020 1 commit
-
-
tauu authored
Co-authored-by: Georg Wechslberger <wechslbe@ma.tum.de>
-
- 07 Apr, 2020 1 commit
-
-
Konstantin Scheglov authored
-
- 25 Jan, 2020 1 commit
-
-
Hans Muller authored
-
- 27 Nov, 2019 1 commit
-
-
Ian Hickson authored
* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
-
- 24 Jul, 2019 1 commit
-
-
Matt Carroll authored
-
- 08 Jul, 2019 1 commit
-
-
Karen Rustad Tölva authored
-
- 05 Apr, 2019 1 commit
-
-
Tim Sneath authored
-
- 30 Oct, 2018 2 commits
-
-
Devon Carew authored
* update the docs for the module template * update text
-
Michael Thomsen authored
* Update template comments Make template comments consistent with recent tools changes * Update packages/flutter_tools/templates/app/lib/main.dart.tmpl Co-Authored-By: mit-mit <mit-mit@users.noreply.github.com> * Fix merge conflict
-
- 10 Oct, 2018 1 commit
-
-
Philip authored
* Remove new keyword from default template app
-
- 04 Oct, 2018 1 commit
-
-
Greg Spencer authored
This renames the "module" template to the "application" template, and makes "application" the default. The existing "app" template is now deprecated. flutter create also now recognizes the type of project in an existing directory, and is able to recreate it without having the template type explicitly specified (although you can still do that). It does this now by first looking in the .metadata file for the new project_type field, and if it doesn't find that, then it looks at the directory structure. Also, the .metadata file is now overwritten even on an existing directory so that 1) the project_type can be added to legacy projects, and 2) the version of Flutter that updated the project last is updated. I also cleaned up a bunch of things in create_test.dart, added many more tests, and added an example test to the test/ directory in the generated output of the application template. Fixes #22530 Fixes #22344
-
- 24 May, 2018 1 commit
-
-
Sarah Zakarias authored
-
- 20 Oct, 2017 1 commit
-
-
Devon Carew authored
-
- 26 Sep, 2017 1 commit
-
-
asaarnak authored
* Seems like a lint was renamed. Lint `- unnecessary_brace_in_string_interp` is not in the list here: http://dart-lang.github.io/linter/lints/ In linter [0.1.30](https://github.com/dart-lang/linter/blob/9652dd44b6b32d5c8fc0262f67e037842ef207cc/CHANGELOG.md#0130): [http://dart-lang.github.io/linter/lints/unnecessary_brace_in_string_interp.html](unnecessary_brace_in_string_interp) In linter [0.1.2](https://github.com/dart-lang/linter/blob/9652dd44b6b32d5c8fc0262f67e037842ef207cc/CHANGELOG.md#012): [http://dart-lang.github.io/linter/lints/unnecessary_brace_in_string_interps.html](unnecessary_brace_in_string_interps) * Fix lint tests. analyze_once_test.dart and create_test.dart
-
- 31 Aug, 2017 1 commit
-
-
Phil Quitslund authored
* Update Hot Reload label text in template app instructions. * label fix
-
- 26 Jul, 2017 1 commit
-
-
Devon Carew authored
-
- 08 Jun, 2017 1 commit
-
-
Michael Thomsen authored
* Remove comments unrelated to plugin example app * Review feedback
-
- 05 Jun, 2017 1 commit
-
-
Ian Hickson authored
-
- 21 Apr, 2017 1 commit
-
-
Michael Thomsen authored
* Make seperation between app and plugin main.dart more manageable. * Jakob review feedback * Remove empty line * Add missing newline
-
- 11 Apr, 2017 1 commit
-
-
xster authored
Rename State.config to State.widget Rename State.didUpdateConfig to State.didUpdateWidget Renamed all State subclasses' local variables named config to something else
-
- 30 Mar, 2017 1 commit
-
-
Jakob Andersen authored
Plugin projects are created by running `flutter create --plugin <name>`. An example app is also created in the plugin project, using the normal 'create' template, which has been modified to allow for conditional plugin code. Modified the android package name to match package naming conventions (all lower-case, and must match the directory name).
-
- 06 Mar, 2017 1 commit
-
-
Michael Thomsen authored
* Small update to instructional comments in app template * Update Flutter Driver comment Good suggestion to add the link, Seth! I also updated the working to match what that page uses.
-
- 02 Nov, 2016 1 commit
-
-
Ian Hickson authored
-
- 01 Nov, 2016 1 commit
-
-
Ian Hickson authored
-
- 24 Oct, 2016 1 commit
-
-
Ian Hickson authored
This should help new users figure out how to set up their constructors and use config data from the build method of a State.
-
- 21 Oct, 2016 1 commit
-
-
Ian Hickson authored
This tries to capture some of the experience of usability study participant P1.
-
- 11 Oct, 2016 1 commit
-
-
Dan Rubel authored
-
- 24 Aug, 2016 1 commit
-
-
Dan Rubel authored
* test flutter create project dart file is properly formatted * restore driver-test * cleanup lint warnings * address comment
-
- 19 Aug, 2016 1 commit
-
-
Dan Rubel authored
-
- 21 Jun, 2016 1 commit
-
-
Ian Hickson authored
Anywhere that accepted IconData now accepts either an Icon or an ImageIcon. Places that used to take an IconData in an `icon` argument, notably IconButton and DrawerItem, now take a Widget in that slot. You can wrap the value that used to be passed in in an Icon constructor to get the same result. Icon itself now takes the icon as a positional argument, for brevity. ThemeData now has an iconTheme as well as a primaryIconTheme, the same way it has had a textTheme and primaryTextTheme for a while. IconTheme.of() always returns a value now (though that value itself may have nulls in it). It defaults to the ThemeData.iconTheme. IconThemeData.fallback() is a new method that returns an icon theme data structure with all fields filled in. IconTheme.merge() is a new constructor that takes a context and creates a widget that mixes in the new values with the inherited values. Most places that introduced an IconTheme widget now use IconTheme.merge. IconThemeData.merge and IconThemeData.copyWith act in a way analogous to the similarly-named members of TextStyle. ImageIcon is introduced. It acts like Icon but takes an ImageProvider instead of an IconData. Also: Fix the analyzer to actually check the stocks app.
-
- 20 Apr, 2016 1 commit
-
-
Ian Hickson authored
The 'routes' table is a point of confusion with new developers. By providing a 'home' argument that sets the '/' route, we can delay the point at which we teach developers about 'routes' until the point where they want to have a second route.
-
- 31 Mar, 2016 1 commit
-
-
Adam Barth authored
This gives developers a breadcrumb they can follow to customize the theme of their app. Previously, some customers were trying to set a theme by manually configuring the colors of all their widgets. Fixes #2980
-
- 26 Mar, 2016 1 commit
-
-
Adam Barth authored
It's a good practice to let clients supply a key for every widget. Fixes #2910
-
- 14 Mar, 2016 1 commit
-
-
Adam Barth authored
-
- 13 Mar, 2016 2 commits
-
-
Adam Barth authored
* left -> leading (Removes an LTR bias) * center -> title (Widget was actually centered) * right -> actions (Removes an LTR bias, asymmetric with leading) Fixes #2348
-
Adam Barth authored
Fixes #2353
-
- 12 Mar, 2016 1 commit
-
-
Adam Barth authored
This patch renames StatelessComponent to StatelessWidget and StatefulComponent to StatefulWidget. Fixes #2308
-
- 02 Mar, 2016 1 commit
-
-
Adam Barth authored
Rather than managing all the Material Design icons manually, we now manage them using an icon font. The icon font contains glyphs for each icon in an efficient vector format. This patch updates the FLX tooling to include the MaterialIcons font and updates the Icon widget to use the font instead of asset images. Fixes #2313 Fixes #2218 Fixes #2009 Fixes #994
-
- 01 Mar, 2016 1 commit
-
-
Yegor Jbanov authored
-