1. 20 Jan, 2018 5 commits
  2. 19 Jan, 2018 12 commits
  3. 18 Jan, 2018 9 commits
  4. 17 Jan, 2018 12 commits
  5. 16 Jan, 2018 2 commits
    • Vyacheslav Egorov's avatar
      Strong mode fix for datePatterns in material localizations (#14117) · b1248de5
      Vyacheslav Egorov authored
      Code that uses dataPatterns[loc] expects it to contain Map<String, String>, not Map<String, dynamic>.
      
      Change gen_date_localizations.dart to generate datePatterns with a more precise type and regenerate date_localizations.dart.
      b1248de5
    • Dwayne Slater's avatar
      Set _imageInfo to null BEFORE adding listener to new ImageStream (#13825) · 4488f58a
      Dwayne Slater authored
      * Set _imageInfo to null before adding listener to new ImageStream
      
      Fixes an edge case where switching the ImageStream to an already completed ImageStream caused the Image widget to show nothing. ImageStreamCompleter calls the listener during addListener if their image is already loaded.
      
      * Fix whitespace
      
      * Add test to verify correct behavior
      
      * Added test from mravn-google's PR
      4488f58a