1. 08 Apr, 2017 1 commit
  2. 07 Apr, 2017 2 commits
  3. 06 Apr, 2017 1 commit
  4. 05 Apr, 2017 4 commits
  5. 04 Apr, 2017 5 commits
  6. 03 Apr, 2017 1 commit
    • xster's avatar
      Make Cupertino page transitions match native behaviours (#9138) · 58ddde88
      xster authored
      * Moved stuff around yet
      
      * Fix depedencies
      
      * Add more dartdoc comments to packages
      
      * Remove Cupertino dependency on material
      
      * Removed mountain_view package and added page transition test
      
      * Fix analyze warnings
      
      * Remove commented code
      
      * Partial solution. Still need to stop the animation on the previous page for modal
      
      * Some review notes
      
      * Move the cupertino back gesture controller’s lifecycle management back to its parent
      
      * Reviews
      
      * Add background color
      
      * Directional curves, full screen transition
      
      * Don’t perform the exit animation if the incoming page is a dialog
      
      * It works!
      
      * Test structures
      
      * Add a bunch of more tests and fix the gallery
      
      * One more comment
      
      * Review notes
      
      * final controller
      
      * Use that sweet sweet `is!` keyword
      
      * Play golf, because I’m bitter that there’s no nullable `as` or something in dart
      
      * Remove a space
      
      * Review notes
      
      * Remove the last deprecated test
      58ddde88
  7. 02 Apr, 2017 1 commit
    • Adam Barth's avatar
      Rationalize text input widgets (#9119) · ae899486
      Adam Barth authored
      After this patch, there are three major text input widgets:
      
       * EditableText. This widget is a low-level editing control that
         interacts with the IME and displays a blinking cursor.
      
       * TextField. This widget is a Material Design text field, with all the
         bells and whistles. It is highly configurable and can be reduced down
         to a fairly simple control by setting its `decoration` property to
         null.
      
       * TextFormField. This widget is a FormField that wraps a TextField.
      
      This patch also replaces the InputValue data model for these widgets
      with a Listenable TextEditingController, which is much more flexible.
      
      Fixes #7031
      ae899486
  8. 31 Mar, 2017 1 commit
  9. 30 Mar, 2017 7 commits
  10. 29 Mar, 2017 1 commit
  11. 28 Mar, 2017 2 commits
  12. 27 Mar, 2017 4 commits
  13. 24 Mar, 2017 4 commits
  14. 23 Mar, 2017 3 commits
    • Michael Thomsen's avatar
    • Sarah Zakarias's avatar
      Add start-up test for flutter_view sample (#8892) · 18db5a2e
      Sarah Zakarias authored
      * Add start-up test for flutter_view sample
      
      * add reportMetrics flag to startup test
      
      * rewording in manifest.yaml
      18db5a2e
    • Chris Bracken's avatar
      Build Flutter app as a framework on iOS (#8971) · 0ee3f57a
      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.
      0ee3f57a
  15. 22 Mar, 2017 2 commits
  16. 21 Mar, 2017 1 commit