1. 06 Oct, 2018 1 commit
  2. 12 Sep, 2018 1 commit
  3. 22 Aug, 2018 1 commit
  4. 02 Aug, 2018 1 commit
  5. 27 Jul, 2018 1 commit
  6. 25 Jul, 2018 1 commit
    • jslavitz's avatar
      Added single open panel functionality (#19624) · 28dc0074
      jslavitz authored
      * Just commiting two files now
      
      * Fixed one tab
      
      * Fixed latest changes
      
      * Changed the data structure from a map to a single radio panel object
      
      * A few more changes
      
      * Fixed change from expansion radio to regular list
      
      * Fixed change from expansion radio to regular list2
      
      * Changed the radio constructor
      
      * Last fixes
      
      * Final commit
      
      * Actual final commit
      
      * Last change
      28dc0074
  7. 23 Jul, 2018 1 commit
  8. 16 Jul, 2018 2 commits
  9. 20 Jun, 2018 1 commit
  10. 16 Nov, 2017 1 commit
    • Ian Hickson's avatar
      ExpansionPanel animation fixes (#13032) · c97fc206
      Ian Hickson authored
      Previously, ExpansionPanel would do weird things if interacted with
      when it was already animating. This is fixed and there's now a test.
      
      Also:
      
       * Minor fixes to make the gallery work in RTL, not that there's
         any way to see that without hard-coding the framework to RTL.
         But at least I'll be less annoyed when doing that.
      
       * Some trivial code and documentation cleanup.
      c97fc206
  11. 22 Oct, 2017 1 commit
  12. 27 Sep, 2017 1 commit
  13. 26 Sep, 2017 1 commit
  14. 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
  15. 04 Mar, 2017 1 commit
  16. 24 Jan, 2017 1 commit
    • Adam Barth's avatar
      Add SingleChildScrollView (#7620) · 559621ca
      Adam Barth authored
      This widget is a replacement for ScrollableViewport that uses the new
      Scrollable2 machinery. The widget is not based on Slivers but does use the new
      scroll behavior classes.
      559621ca
  17. 09 Dec, 2016 1 commit
  18. 15 Sep, 2016 1 commit
  19. 08 Sep, 2016 1 commit
    • Ian Hickson's avatar
      Make tests more realistic (#5762) · 5bc8888e
      Ian Hickson authored
      Previously, pumpWidget() would do a partial pump (it didn't trigger
      Ticker callbacks or post-frame callbacks), and pump() would do a full
      pump. This patch brings them closer together. It also makes runApp run a
      full actual frame, rather than skipping the transient callback part of
      the frame logic. Having "half-frames" in the system was confusing and
      could lead to bugs where code expecting to run before the next layout
      pass didn't because a "half-frame" ran first.
      
      Also, make Tickers start ticking in the frame that they were started in,
      if they were started during a frame. This means we no longer spin a
      frame for t=0, we jump straight to the first actual frame.
      
      Other changes in this patch:
      
      * rename WidgetsBinding._runApp to WidgetsBinding.attachRootWidget, so
        that tests can use it to more accurately mock out runApp.
      
      * allow loadStructuredData to return synchronously.
      
      * make handleBeginFrame handle not being given a time stamp.
      
      * make DataPipeImageProvider.loadAsync protected (rather than private),
        and document it. There wasn't really a reason for it to be private.
      
      * fix ImageConfiguration.toString.
      
      * introduce debugPrintBuildScope and debugPrintScheduleBuildForStacks,
        which can help debug problems with widgets getting marked as dirty but
        not cleaned.
      
      * make debugPrintRebuildDirtyWidgets say "Building" the first time and
        "Rebuilding" the second, to make it clearer when a widget is first
        created. This makes debugging widget lifecycle issues much easier.
      
      * make debugDumpApp more resilient.
      
      * debugPrintStack now takes a label that is printed before the stack.
      
      * improve the banner shown for debugPrintBeginFrameBanner.
      
      * various and sundry documentation fixes
      5bc8888e
  20. 26 Aug, 2016 1 commit
    • Dragoș Tiselice's avatar
      Added expansion panels. (#5523) · b8980aeb
      Dragoș Tiselice authored
      Added ExpansionPanel and ExpansionPanelList. The implementation
      is based on the Material design spec, without enforcing every
      facet of it, leaving the developer using this the liberty to
      enforced it lower down the widget tree. This decision was made
      based on the argument that implementing more of the spec would
      reduce flexibility to a point where some design would not be
      implementable with this widget anymore.
      b8980aeb