1. 11 Jun, 2020 1 commit
  2. 03 Jun, 2020 1 commit
  3. 20 Apr, 2020 1 commit
  4. 30 Jan, 2020 1 commit
  5. 07 Jan, 2020 1 commit
  6. 21 Dec, 2019 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. 23 Aug, 2019 1 commit
  9. 21 Aug, 2019 1 commit
  10. 26 Jul, 2019 1 commit
  11. 11 Jul, 2019 1 commit
  12. 07 Jun, 2019 2 commits
  13. 06 Jun, 2019 1 commit
  14. 05 Jun, 2019 1 commit
  15. 04 Jun, 2019 2 commits
    • Gary Qian's avatar
      Text inline widgets, TextSpan rework (#33794) · 86862c1e
      Gary Qian authored
      * Merge in changes for inline widgets
      
      * Make analyzer happy, fix tests
      
      * Fix analyzer
      
      * Add missing doc
      
      * Docs on RichText
      
      * Fix analyzer some more
      
      * Remove whitespace at end of line
      
      * Update goldens
      
      * Text fixes
      
      * Analyzer
      86862c1e
    • Greg Spencer's avatar
      Add actions and keyboard shortcut map support (#33298) · 387e2b06
      Greg Spencer authored
      This implements the keyboard shortcut handling and action invocation in order to provide a place in the infrastructure for keyboard events to trigger actions. This will allow binding of key events to actions like "move the focus to the next widget" and "activate button".
      387e2b06
  16. 10 May, 2019 1 commit
  17. 05 Apr, 2019 1 commit
  18. 03 Apr, 2019 1 commit
  19. 27 Oct, 2018 1 commit
  20. 07 Sep, 2018 2 commits
  21. 04 Sep, 2018 1 commit
  22. 16 Aug, 2018 1 commit
  23. 10 Aug, 2018 1 commit
    • Ian Hickson's avatar
      Visibility widget (#20365) · 21f22ed3
      Ian Hickson authored
      * Visibility widget
      
      This attempts to address the confusion around how to hide a widget subtree.
      
      * Apply review comments
      
      * More clarifications
      21f22ed3
  24. 20 Jul, 2018 1 commit
  25. 22 Jun, 2018 1 commit
  26. 16 May, 2018 1 commit
    • Greg Spencer's avatar
      Add Spacer Widget (#16642) · f3874359
      Greg Spencer authored
      This adds a simple spacer widget first suggested by Scott Stoll (@ScottS2017) in the abandoned PR #15802
      
      This PR replaces that one, cleans it up, and adds a test.
      f3874359
  27. 16 Apr, 2018 1 commit
    • Greg Spencer's avatar
      Rename AnimatedChildSwitcher to AnimatedSwitcher (#16551) · 6c049ec2
      Greg Spencer authored
      We don't really like the name AnimatedChildSwitcher, and we think that AnimatedSwitcher might be better (since the Child part is redundant). We also considered AnimatedChild, AnimatedTransition and AnimatedReplacement (among others).
      
      Nothing in here besides a rename.
      6c049ec2
  28. 03 Apr, 2018 1 commit
    • Greg Spencer's avatar
      Add AnimatedChildSwitcher widget (#16192) · 6c896ae1
      Greg Spencer authored
      The AnimatedChildSwitcher widget (originally authored by Hixie), will cross-fade between a new child, and a previous child (or children, if the switch happens faster than the fade finishes).
      
      It's a good candidate for places where a widget will be added/removed from a slot, and you want a nice transition to occur.
      6c896ae1
  29. 22 Jan, 2018 1 commit
  30. 22 Dec, 2017 1 commit
    • xster's avatar
      Add Cupertino scrollbar (#13290) · 4fcdb50d
      xster authored
      * Create CupertinoScrollbar
      
      * handle main axis margin
      
      * Adaptive material scrollbar and tests
      
      * Small tweaks
      
      * reapply changes on head
      
      * Docs
      
      * start
      
      * Refactored ScrollbarPainter to be more immutable
      
      * fix tests
      
      * fix bug: one animationcontroller pointed to multiple painters
      
      * some docs tweak
      
      * remove unused import
      
      * review
      
      * review
      
      * add dispose
      4fcdb50d
  31. 02 Nov, 2017 1 commit
  32. 29 Sep, 2017 1 commit
  33. 24 Aug, 2017 1 commit
  34. 21 Aug, 2017 1 commit
    • Jacob Richman's avatar
      Bare bones widget inspector support. (#10332) · 5462ddb9
      Jacob Richman authored
      Bare bones widget inspector support.
      
      Toggle the widget inspector from the flutter tool by pressing 'i'.
      When the widget inspector is select mode:
      Pointer down to to inspect a widget.
      Pointer click to finalize selection of a widget. You can now interact
      with the application as you normally would but with the inspected widget
      highlighted.
      Click the inspect icon in bottom left corner of screen to reactivate
      select mode.
      5462ddb9
  35. 02 Aug, 2017 1 commit
    • Yegor's avatar
      FadeInImage: shows a placeholder while loading then fades in (#11371) · 89d06450
      Yegor authored
      * FadeInImage: shows a placeholder while loading then fades in
      
      * fix dartdoc quotes
      
      * license headers; imports
      
      * use ImageProvider; docs; constructors
      
      * _resolveImage when placeholder changes
      
      * address comments
      
      * docs re ImageProvider changes; unsubscribe from placeholder
      
      * rebase
      
      * address comments
      89d06450
  36. 01 Jul, 2017 1 commit
    • Ian Hickson's avatar
      Automatic silver keep alive (#11067) · 7ba1879b
      Ian Hickson authored
      * AutomaticKeepAlive
      
      A Widget that listens for notifications from widgets that don't want to die.
      
      * Automatically wrap SliverList and SliverGrid children in AutomaticKeepAlive widgets
      
      * Fixes for review comments
      7ba1879b
  37. 01 Jun, 2017 1 commit