1. 06 Aug, 2020 1 commit
  2. 17 Jul, 2020 1 commit
  3. 11 Jun, 2020 1 commit
  4. 28 Jan, 2020 1 commit
  5. 23 Jan, 2020 1 commit
  6. 22 Jan, 2020 1 commit
  7. 27 Nov, 2019 1 commit
    • Ian Hickson's avatar
      License update (#45373) · 449f4a66
      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
      449f4a66
  8. 31 Oct, 2019 1 commit
    • Greg Spencer's avatar
      Don't allow Disabled InkWells to be focusable (#43848) · 0028887a
      Greg Spencer authored
      Makes sure that disabled InkWell/InkResponse and widgets that use them don't allow themselves to be focused.
      
      ListTile, PopupMenu, and Stepper were not setting canRequestFocus properly on the InkWell, and InkWell was allowing focus even if it was disabled (it was basically just relying on the containing widget to set canRequestFocus properly). Now InkWell must both be enabled (have an onTap or similar) and have canRequestFocus set to true.
      0028887a
  9. 28 Oct, 2019 1 commit
  10. 24 Sep, 2019 1 commit
  11. 09 Jul, 2019 1 commit
  12. 20 Jun, 2019 1 commit
  13. 21 Feb, 2019 1 commit
  14. 12 Feb, 2019 1 commit
    • Jake Gough's avatar
      Added 'physics' prop to Stepper. (#26297) · dfce0a7f
      Jake Gough authored
      * Update stepper.dart
      
      Added 'physics' prop which allows the developer to assign the Stepper's scroll view's 'ScrollPhysics' which can solve with unwanted scrolling behaviour if the parent is also a scroll view. Defaults to 'AlwaysScrollableScrollPhysics' if null.
      
      * Update stepper.dart
      
      Removed unnecessary import and defaulting to 'AlwaysScrollableScrollPhysics' if physics prop is null.
      
      * Update stepper.dart
      
      Ran through format to remove unwanted whitespace which Analysis isn't happy about.
      
      * Update stepper.dart
      
      Tried reformatting again.
      
      * Update stepper.dart
      
      Tried reformatting again.
      
      * Update stepper.dart
      
      Formatting again why do you hate me github editor.
      
      * Update stepper.dart
      
      * Update stepper.dart
      
      if this format doesn't work i'll cry
      
      * Update stepper_test.dart
      
      Added Stepper scroll tests. One that fails to find Text after Stepper if physics left as null and one that succeeds if physics set to `ClampingScrollPhysics()`
      
      * Update stepper_test.dart
      
      Added const constructors
      
      * Update stepper_test.dart
      
      trying to get rid of whitespace again
      
      * Update stepper_test.dart
      
      * Update stepper_test.dart
      
      why whitespace why
      
      * Update stepper_test.dart
      
      * Update stepper_test.dart
      
      * Update stepper_test.dart
      
      * Update stepper_test.dart
      
      Swapped to `findsNothing` because I'm an idiot.
      
      * Update stepper_test.dart
      
      * Update stepper.dart
      dfce0a7f
  15. 25 Oct, 2018 1 commit
  16. 12 Sep, 2018 1 commit
  17. 05 Sep, 2018 1 commit
  18. 04 Sep, 2018 1 commit
  19. 02 Aug, 2018 1 commit
  20. 27 Jul, 2018 1 commit
  21. 23 Jul, 2018 1 commit
  22. 16 Jul, 2018 2 commits
  23. 11 Jan, 2018 1 commit
  24. 28 Aug, 2017 1 commit
    • Ian Hickson's avatar
      RTL: Padding, Flex (#11709) · f235a2c1
      Ian Hickson authored
      * Introduce a Directionality inherited widget which sets the ambient LTR vs RTL mode (defaulting to null, which means you cannot use directionality-influenced values).
      
      * Make it possible to configure Padding (including Container.padding and Container.margin) using a directionality-agnostic EdgeInsets variant.
      
      * Provide textDirection and verticalDirection controls on Row and Column to make them RTL-aware.
      
      * Introduce a variant of FractionalOffset based on the EdgeInsets variant. Not yet actually used.
      
      * Fix all the tests that depended on Row defaulting to LTR.
      f235a2c1
  25. 23 Apr, 2017 1 commit
  26. 07 Apr, 2017 1 commit
  27. 04 Mar, 2017 1 commit
  28. 17 Feb, 2017 2 commits
    • Adam Barth's avatar
      Two becomes one (#8253) · e0b12ca1
      Adam Barth authored
      Rename all the "2" classes related to scrolling to remove the "2". Now that the
      old scrolling code is gone, we don't need to use the suffix.
      e0b12ca1
    • Adam Barth's avatar
      Remove Scrollable1 (#8225) · 90574b04
      Adam Barth authored
      All the clients have migrated to Scrollable2.
      90574b04
  29. 03 Feb, 2017 1 commit
    • Adam Barth's avatar
      Add PageView (#7809) · 32314657
      Adam Barth authored
      This widget is a start towards replacing PageableList. There are still a number
      of features that we'll need to add before this widget can replace PageableList.
      32314657
  30. 02 Feb, 2017 1 commit
  31. 09 Dec, 2016 1 commit
  32. 16 Sep, 2016 1 commit