1. 17 Aug, 2016 1 commit
  2. 16 Aug, 2016 1 commit
  3. 29 Jul, 2016 2 commits
  4. 28 Jul, 2016 1 commit
  5. 22 Jul, 2016 1 commit
  6. 20 Jun, 2016 1 commit
  7. 19 May, 2016 1 commit
    • Adam Barth's avatar
      Tabs and scrolling has odd card text (#4019) · 8283d05e
      Adam Barth authored
      Looks like our intent here was to show the tab label rather than
      "Instance of '_Page'".
      
      Also, fix an issue where the scrollableKey wasn't being forwarded to the
      actual scrollable.
      
      Fixes #3090
      8283d05e
  8. 09 May, 2016 1 commit
  9. 21 Apr, 2016 1 commit
  10. 19 Apr, 2016 1 commit
  11. 06 Apr, 2016 1 commit
  12. 25 Mar, 2016 1 commit
    • Adam Barth's avatar
      Add a default MediaQuery value · 3c6d4f66
      Adam Barth authored
      Now MediaQuery.of always returns a non-null value. By default, you get the
      values associated with the current ui.Window.
      
      Fixes #2894
      3c6d4f66
  13. 21 Mar, 2016 1 commit
  14. 14 Mar, 2016 1 commit
  15. 13 Mar, 2016 1 commit
    • Adam Barth's avatar
      [rename fixit] ToolBar -> AppBar · ede5dfce
      Adam Barth authored
      * left -> leading (Removes an LTR bias)
      * center -> title (Widget was actually centered)
      * right -> actions (Removes an LTR bias, asymmetric with leading)
      
      Fixes #2348
      ede5dfce
  16. 12 Mar, 2016 5 commits
  17. 10 Mar, 2016 1 commit
  18. 02 Mar, 2016 1 commit
    • Adam Barth's avatar
      Switch Material Design icons to using the iconfont · 870894fc
      Adam Barth authored
      Rather than managing all the Material Design icons manually, we now
      manage them using an icon font. The icon font contains glyphs for each
      icon in an efficient vector format.
      
      This patch updates the FLX tooling to include the MaterialIcons font and
      updates the Icon widget to use the font instead of asset images.
      
      Fixes #2313
      Fixes #2218
      Fixes #2009
      Fixes #994
      870894fc
  19. 09 Feb, 2016 1 commit
  20. 20 Jan, 2016 1 commit
  21. 11 Jan, 2016 1 commit
    • Adam Barth's avatar
      Simplify TabView API · dd08bf79
      Adam Barth authored
      Instead of taking a builder and a generic type, we can just take a
      List<Widget>.
      dd08bf79
  22. 06 Jan, 2016 2 commits
  23. 22 Dec, 2015 1 commit
  24. 16 Dec, 2015 1 commit
    • Hans Muller's avatar
      Correct the TabBarView swipe selection change animation · 65dca5b5
      Hans Muller authored
      The TabBarSelection change animation needs to start where the fling's drag gesture ended rather than from zero.  The intial vlaue of progress for the TabBarSelection's performance is now converted from the range used during an interactive drag, to the range used when animating from the previously selected tab to the new one.
      
      TabBarSelection now requires a maxIndex parameter.
      65dca5b5
  25. 10 Dec, 2015 1 commit
  26. 30 Nov, 2015 1 commit
    • Hans Muller's avatar
      TabNavigator animates selected TabView · 9de4df1e
      Hans Muller authored
      The TabBar's selection is now represented by a TabBarSelection object which encapsulates both the previous and currently selected indices and the Performance used to animate the selection indicator.
      
      Added a TabBarView class which displays a tab's contents. It uses a shared TabBarSelection to stay in sync with a TabBar. The TabBarView scrolls in sync with the TabBar when the selection changes. Eventually it will allow one to fling the selection forward or backwards.
      
      Added a tabBar property to ToolBar. Typically the corresponding TabBarView will be the body of the toolbar's Scaffold.
      
      Removed TabNavigatorView and TabNavigator.
      
      Added a widget gallery tabs demo page. Removed the old tabs demo.
      9de4df1e