1. 07 Jan, 2021 1 commit
  2. 07 Oct, 2020 1 commit
  3. 06 Oct, 2020 1 commit
  4. 29 Aug, 2020 1 commit
  5. 24 Aug, 2020 1 commit
  6. 18 Aug, 2020 1 commit
  7. 14 Aug, 2020 1 commit
  8. 09 Jul, 2020 1 commit
  9. 11 Jun, 2020 1 commit
  10. 14 May, 2020 1 commit
  11. 27 Jan, 2020 1 commit
  12. 22 Jan, 2020 1 commit
  13. 17 Jan, 2020 2 commits
  14. 16 Dec, 2019 1 commit
  15. 13 Dec, 2019 1 commit
  16. 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
  17. 26 Nov, 2019 1 commit
  18. 28 Oct, 2019 1 commit
  19. 16 Aug, 2019 1 commit
  20. 11 Jun, 2019 1 commit
  21. 29 Apr, 2019 1 commit
  22. 01 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      Add missing trailing commas (#28673) · 387f8854
      Alexandre Ardhuin authored
      * add trailing commas on list/map/parameters
      
      * add trailing commas on Invocation with nb of arg>1
      
      * add commas for widget containing widgets
      
      * add trailing commas if instantiation contains trailing comma
      
      * revert bad change
      387f8854
  23. 21 Feb, 2019 1 commit
  24. 17 Jan, 2019 1 commit
  25. 16 Jan, 2019 1 commit
  26. 11 Oct, 2018 1 commit
  27. 12 Sep, 2018 1 commit
  28. 07 Jun, 2018 1 commit
  29. 17 Feb, 2017 1 commit
  30. 09 Dec, 2016 1 commit
  31. 16 May, 2016 1 commit
    • Ian Hickson's avatar
      Make it possible to run tests live on a device (#3936) · 32527017
      Ian Hickson authored
      This makes it possible to substitute 'flutter run' for 'flutter test'
      and actually watch a test run on a device.
      
      For any test that depends on flutter_test:
      
      1. Remove any import of 'package:test/test.dart'.
      
      2. Replace `testWidgets('...', (WidgetTester tester) {`
            with `testWidgets('...', (WidgetTester tester) async {`
      
      3. Add an "await" in front of calls to any of the following:
          * tap()
          * tapAt()
          * fling()
          * flingFrom()
          * scroll()
          * scrollAt()
          * pump()
          * pumpWidget()
      
      4. Replace any calls to `tester.flushMicrotasks()` with calls to
         `await tester.idle()`.
      
      There's a guarding API that you can use, if you have particularly
      complicated tests, to get better error messages. Search for
      TestAsyncUtils.
      32527017
  32. 09 Apr, 2016 1 commit
  33. 09 Feb, 2016 1 commit
  34. 16 Dec, 2015 1 commit
  35. 14 Dec, 2015 1 commit
  36. 05 Nov, 2015 1 commit
    • Adam Barth's avatar
      Improve hit testing · 9bc64540
      Adam Barth authored
      Now a RenderBox is considered hit if one of its children are hit or it itself
      decides that it's hit. In particular, empty space inside a flex won't be hit
      because none of the children are located there and a RenderFlex doesn't
      consider itself hittable.
      
      Fixes #53
      Fixes #1221
      9bc64540
  37. 10 Oct, 2015 1 commit
  38. 16 Sep, 2015 1 commit
    • Hixie's avatar
      Refactor rendering_tester · cd6c4da3
      Hixie authored
      RenderView has to be a singleton for sanity during tests, otherwise they
      all end up in the dirty lists and we end up pumping all of them each frame.
      cd6c4da3
  39. 26 Aug, 2015 1 commit
    • Adam Barth's avatar
      Rename layout_utils.dart to rendering_tester.dart · 07d96a23
      Adam Barth authored
      Also, rename build_utils.dart to widget_tester.dart. These files are now named
      for their most commonly used classes.
      
      Finally, add a .analysis_options to silence the (intentional) analyzer warnings
      in append_child_test.dart.
      07d96a23