- 27 Mar, 2017 1 commit
-
-
Jakob Andersen authored
The very first time `pod install` is invoked, CocoaPods downloads the master spec repository, which takes quite a while. Before this change, the build appeared to have stalled. With this change, at least the spinner is moving. Added `pod setup` to the install instructions for CocoaPods, so the spec repo is downloaded while setting up Flutter, instead of during the first build.
-
- 26 Mar, 2017 2 commits
-
-
Adam Barth authored
These parameters are the width, not the height.
-
Adam Barth authored
Otherwise it's somewhat verbose to configure all the text themes.
-
- 25 Mar, 2017 2 commits
-
-
lyrachord authored
-
Michael Goderbauer authored
Old Android Stuio versions pior to 2.2.0 didn't come with Java bundled. Make sure flutter doesn't crash when we try to determine the Java version of those old Android Studio installations.
-
- 24 Mar, 2017 10 commits
-
-
Collin Jackson authored
-
Hans Muller authored
-
John McCutchan authored
-
Yegor authored
-
Hans Muller authored
-
Sarah Zakarias authored
-
Sarah Zakarias authored
* Update the examples README file * Addressed comment
-
Sarah Zakarias authored
-
Sarah Zakarias authored
This reverts commit 38e4e48d.
-
Yegor authored
-
- 23 Mar, 2017 14 commits
-
-
Luke authored
* adds highlight + splash color properties to material button * add states to raised button + flat button * fixes an issue where the custom highlight would not be properly set * Add preliminary tests for theme highlight + splash and via theme * documentation changes. tweaks per code review feedback * comment out unused variable * remove unused import * documentation updates. removed commented code
-
Alexandre Ardhuin authored
-
Chris Bracken authored
-
xster authored
-
Michael Goderbauer authored
* Use Java bundled with Android Studio for gradle * review comments
-
P.Y. Laligand authored
-
Sarah Zakarias authored
-
Jakob Andersen authored
Go through all packages brought in by pub, and write the name and path of every one that is a flutter plugin into .flutter-plugins. In android/settings.gradle and ios/Podfile, read in .flutter-plugins, if that file exists. The Android / iOS code from the plugins is automatically added as dependencies of the native code of the app.
-
Michael Thomsen authored
-
Sarah Zakarias authored
* Add start-up test for flutter_view sample * add reportMetrics flag to startup test * rewording in manifest.yaml
-
Mikkel Nygaard Ravn authored
-
Mikkel Nygaard Ravn authored
-
Mikkel Nygaard Ravn authored
-
Chris Bracken authored
**THIS IS A BREAKING CHANGE.** See below for migration steps for existing projects. Previously, Flutter app code was built as a raw dylib on iOS. Dynamic libraries outside of a framework bundle are not supported on iOS, except for the system Swift libraries provided by Xcode. See: https://developer.apple.com/library/content/technotes/tn2435/_index.html#//apple_ref/doc/uid/DTS40017543-CH1-TROUBLESHOOTING_BUNDLE_ERRORS-EMBEDDED__DYLIB_FILES * Migrates Xcode build from app.dylib to App.framework * Migrates flutter create template * Migrates example projects Migration steps for existing projects ===================================== The following steps should be taken from the root of your Flutter project: 1. Edit `ios/.gitignore`: add `/Flutter/App.framework` on a new line. 2. In the Xcode project navigator, remove `app.dylib` from the Flutter folder. Delete this file from the `ios/Flutter` directory in your project. 3. Run a build to generate `ios/Flutter/App.framework`. From the command line, run `flutter build ios`. If you have not configured app signing in Xcode, an alternative method is to open the simulator, then run `flutter run -d iP`. 4. In the Xcode project navigator, select the `Runner` project. In the project settings that are displayed in the main view, ensure that the `Runner` target is selected. You can verify this by exposing the sidebar using the [| ] icon in the upper-left corner of the main view. 5. Select the *General* tab in the project settings. Under the *Embedded Binaries* section, click '+' to add `App.framework`. In the sheet that drops down, click the *Add Other...* button. Navigate to the `ios/Flutter` directory and select `App.framework`. Click *Open*. In the sheet that drops down, select *Create folder references*, then click *Finish*. 6. In the project settings, verify that `App.framework` has been added to the *Embedded Binaries* and *Linked Frameworks and Libraries* lists. 7. In the Xcode project navigator, drag `App.framework` under the Flutter folder. 8. In the Xcode project navigator, select `Flutter` then from the *File* menu, select *Add Files to "Runner"...*. Navigate to the `ios/Flutter` directory, select `AppFrameworkInfo.plist` and click the *Add* button. 9. From the command line, in your project directory, run `flutter build clean`, then `flutter run`. At this point your project should be fully migrated.
-
- 22 Mar, 2017 11 commits
-
-
Kevin Moore authored
* Teach flutter_tools to populate PUB_ENVIRONMENT Will allow telemetry reporting on pub.dartlang.org once flutter moves to 1.23.0-dev.10.0 * review changes
-
Collin Jackson authored
* Improvements to CircleAvatar default color (for codelab) * use a transparent white instead of a solid one * Fix analyzer errors * fix tests
-
Michael Goderbauer authored
-
Michael Goderbauer authored
* Print error message if a package is skipped during DevFS sync. * review comments * more review comments * fix test
-
Michael Goderbauer authored
-
Ian Hickson authored
-
Hans Muller authored
-
Jakob Andersen authored
-
Jakob Andersen authored
* Remove unnecessary Android SDK checks. * Remove unused accessors, skip replay test.
-
Sarah Zakarias authored
* Refactor platform_services sample * removed exception
-
Sarah Zakarias authored
-