1. 07 Apr, 2017 1 commit
  2. 21 Mar, 2017 1 commit
  3. 17 Mar, 2017 1 commit
  4. 04 Mar, 2017 1 commit
  5. 21 Feb, 2017 1 commit
  6. 04 Oct, 2016 1 commit
  7. 20 Apr, 2016 1 commit
    • Ian Hickson's avatar
      Hide routes from the API when they're not needed. (#3431) · 1b9476c4
      Ian Hickson authored
      The 'routes' table is a point of confusion with new developers. By
      providing a 'home' argument that sets the '/' route, we can delay the
      point at which we teach developers about 'routes' until the point where
      they want to have a second route.
      1b9476c4
  8. 14 Mar, 2016 1 commit
  9. 13 Mar, 2016 3 commits
  10. 12 Mar, 2016 2 commits
  11. 02 Mar, 2016 1 commit
  12. 13 Feb, 2016 1 commit
    • Adam Barth's avatar
      Clean up the standalone examples · 948ae15c
      Adam Barth authored
      Our examples have been growing organically over time. This patch cleans
      them up to illustrate specific aspects of Flutter.
      948ae15c
  13. 11 Jan, 2016 1 commit
  14. 05 Dec, 2015 1 commit
  15. 20 Nov, 2015 1 commit
    • Adam Barth's avatar
      Callback identity is too fragile for CustomPaint · 72329cf4
      Adam Barth authored
      Many of the widgets that use CustomPaint were spamming repaints because
      CustomPaint repaints when the identity of the onPaint callback changes, which
      it does every build for StatelessComponents.
      
      This patch changes CustomPaint to use a CustomPainter, similar to the new
      custom layout widgets. The CustomPainter has a `shouldRepaint` function along
      with its `paint` function. This function gives clients explicit control over
      when the custom paint object repaints.
      72329cf4
  16. 03 Nov, 2015 1 commit