1. 04 Aug, 2020 1 commit
  2. 29 Jul, 2020 1 commit
  3. 28 Jul, 2020 2 commits
  4. 11 Jul, 2020 1 commit
  5. 09 Jul, 2020 1 commit
  6. 23 Jun, 2020 2 commits
  7. 11 Jun, 2020 1 commit
  8. 20 Apr, 2020 1 commit
  9. 26 Mar, 2020 1 commit
  10. 25 Mar, 2020 1 commit
  11. 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
  12. 20 Aug, 2019 1 commit
    • Darren Austin's avatar
      Replace ButtonBar.bar method with ButtonBarTheme (#37544) · 9dce19e9
      Darren Austin authored
      * Added new ButtonBarTheme to replace the deprecated ButtonTheme.bar method.
      
      * Responding to PR feedback.
      
      * [Material] Create material Banner component (#36880)
      
      This PR creates a new material widget for the Banner component. This includes a theme as well. This widget can be dropped into any application, ideally at the top of a listview or scrollview.
      
      (cherry picked from commit 35b6d668)
      
      Removed the use of ButtonTheme.bar in the Banner implementation.
      
      * Updated documentation from PR review comments.
      9dce19e9
  13. 16 Aug, 2019 1 commit
  14. 05 Aug, 2019 1 commit
    • rami-a's avatar
      [Material] Create material Banner component (#36880) · 35b6d668
      rami-a authored
      This PR creates a new material widget for the Banner component. This includes a theme as well. This widget can be dropped into any application, ideally at the top of a listview or scrollview.
      35b6d668
  15. 26 Jul, 2019 2 commits
    • lisa-liao's avatar
      Add PopupMenuTheme to enable theming color, shape, elevation, text style of Menu (#36088) · 63992e4f
      lisa-liao authored
      * [Menu] Create Menu theme
      
      * [Menu] Create Menu theme
      
      * [Menu] Formatting changes for Menu theme
      
      * [Menu] Fix spacing difference in theme_data.dart.
      
      * [Menu] Fix spacing difference in theme_data.dart.
      
      * Specifying types
      
      * Formatting changes
      
      * Address PR feedback
      
      * Formatting changes
      
      * Address PR feedback
      
      * Add inherited widget
      
      * Add inherited widget
      
      * Address PR feedback and add inherited widget.
      
      * Formatting changes.
      
      * Address PR feedback
      
      * Address PR feedback
      
      * Address PR feedback
      
      * Address PR feedback
      63992e4f
    • Shi-Hao Hong's avatar
      [Material] ToggleButtons (#34599) · 2e43b470
      Shi-Hao Hong authored
      * Introduces ToggleButtons widget
      
      * Introduces ToggleButtonsTheme inherited widget
      
      * Introduces ThemeData.toggleButtonsTheme property
      2e43b470
  16. 25 Jul, 2019 1 commit
  17. 24 Jul, 2019 2 commits
  18. 19 Jul, 2019 1 commit
  19. 06 Jun, 2019 1 commit
    • Anthony's avatar
      [Material] Create a themable Range Slider (continuous and discrete) (#31681) · e1d0ded9
      Anthony authored
      Creates a Material Design range slider.
      
      The range slider is based off the updated slider, with the main difference being that it has 2 thumbs.
      By default, the thumbs cannot pass each other and both the thumb and the value indicator create a stroke when they are overlapping for better visibility.
      e1d0ded9
  20. 05 Jun, 2019 1 commit
  21. 01 May, 2019 1 commit
    • rami-a's avatar
      Add BottomSheetTheme to enable theming color, elevation, shape of BottomSheet (#31318) · 6a1468db
      rami-a authored
      * Introduce BottomSheetTheme and shape support for bottom sheet
      
      * Add bottom sheet theme to ThemeData. Use theme in bottom sheet build
      
      * Expose color, elevation, shape to showModalBottomSheet helper
      
      * Expose color, elevation, shape to showBottomSheet helper
      
      * Address PR feedback
      
      * Address PR feedback
      
      * Address additional PR feedback
      6a1468db
  22. 24 Apr, 2019 1 commit
    • rami-a's avatar
      Update SnackBar to allow for support of the new style from Material spec (#31275) · d4e4726a
      rami-a authored
      This PR introduces a number of changes and improvements to snack bars. This includes the ability to specify:
      
      floating style of snack bars that adhere to the updated Material spec
      elevation and shape on the SnackBar itself instead of relying on fixed values
      a snackBarTheme as part of ThemeData which allows you to customize all of the above on an app-wide level.
      This PR is includes the changes from #21484 as well as additional fixes and modifications. Thanks to @NikoYuwono for providing these changes and getting this off the ground!
      d4e4726a
  23. 05 Apr, 2019 1 commit
  24. 03 Apr, 2019 1 commit
  25. 20 Mar, 2019 1 commit
    • Anthony's avatar
      [Material] Create a FloatingActionButton ThemeData and honor it within the... · bdf582fd
      Anthony authored
      [Material] Create a FloatingActionButton ThemeData and honor it within the FloatingActionButton (#28735)
      
      Adds a FloatingActionButtonThemeData so that FABs can be themed at the Theme level and independently. The properties that are now on the theme must be defaulted at the build level, in order to respect any contributing theme properties. Because of this, some tests had to be modified to look at properties after they are built. Also, since default behaviors are now tested in the FAB Theme test, some default tests in the FAB test no longer applied and were removed.
      
      The themable properties are:
      -backgroundColor
      -foregroundColor
      -elevation
      -disabledElevation
      -highlightElevation
      -shape
      bdf582fd
  26. 01 Feb, 2019 1 commit
  27. 24 Jan, 2019 1 commit
  28. 22 Jan, 2019 1 commit
    • rami-a's avatar
      [Material] Implement App Bar Theme (#26597) · af0758e6
      rami-a authored
      This change creates an `AppBarTheme` to be used with `AppBar` widgets. This allows for users to theme their AppBars separately from their overall Theme if they choose.
      af0758e6
  29. 10 Jan, 2019 1 commit
    • MH Johnson's avatar
      [Material] Bottom app bar theme (#24156) · 090c3bcd
      MH Johnson authored
      * [WIP] BAB theme
      
      * [WIP] BAB theme
      
      * Update goldens
      
      * Extract helper function in tests
      
      * Update Goldens version
      
      * Add tests
      
      * [WIP] Hans first round comments
      
      * Added test
      
      * Added docs
      
      * Hans second round comments
      
      * Fixed analyzer error
      
      * Hans third round comments
      
      * ambient
      
      * Change [BottomAppBarTheme.of] to static
      
      * Final doc change
      090c3bcd
  30. 08 Jan, 2019 1 commit
  31. 05 Nov, 2018 1 commit
  32. 12 Oct, 2018 2 commits
    • matthew-carroll's avatar
      Revert "Reversion for roll (#22984)" (#23029) · 04a26778
      matthew-carroll authored
      This reverts commit 80f80ab0.
      04a26778
    • matthew-carroll's avatar
      Reversion for roll (#22984) · 80f80ab0
      matthew-carroll authored
      For G3 Roll:
      
      * Revert "MaterialButton must honor its minWidth and height parameters (#22919)"
      
      This reverts commit a0233233.
      
      * Revert "Update uses of ButtonTheme.bar: pass along the current Theme's colorScheme (#22827)"
      
      This reverts commit 655bf6a2.
      
      * Revert "ButtonTheme.of().colorScheme defers to Theme (#22880)"
      
      This reverts commit a590940e.
      
      * Revert "Bring TextTheme into alignment with the current Material spec (#22330)"
      
      This reverts commit 8bfb4b3e.
      
      * Revert "Added ColorScheme, updated ThemeData, ButtonTheme, material buttons (#22013)"
      
      This reverts commit eea3465a.
      
      * Manual adjustments to fix reversion issues.
      80f80ab0
  33. 10 Oct, 2018 1 commit
  34. 02 Oct, 2018 1 commit
  35. 25 Sep, 2018 1 commit
    • MH Johnson's avatar
      [Material] Add TabBarTheme (#22012) · f37c235c
      MH Johnson authored
      * Add tab bar theme.
      
      * Add tab bar theme.
      
      * Add tests, pass context to getters.
      
      * update goldens from linux box
      
      * update goldens from linux box
      
      * Added new golden test, addressed comments
      
      * override hashCode and == in TabBarTheme
      
      * Fix comment typos
      
      * Addressed Hans' comments.
      
      * Formatting changes
      
      * [TabBarTheme] Fixed spacing
      
      * [TabBarTheme] Update goldens version to latest commit
      f37c235c