Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#93
The class
MixProperty<T>
was created, which will be in every mix attribute. With it, it's possible to use values that depends on the currentBuildContext
. This means it's possible to do bothbgColor(Colors.white)
andbgColor(theme<MyColors, Color>((colors) => colors.white))
.Added
theme
, a function that fetchesThemeExtension
s from the closestTheme
widget. Also a basic example was added to the/demo
app. To try it, change the app theme mode (light/dark) and see the "Gradient Box" color change as the theme changes.Another advantage of this approach is that we now can make use of Material's
AnimatedTheme
. When a property in yourThemeExtension
changes, itslerp
function is called and is animated accordingly to the theme. (animate()
works with it too, in case you want to delay the animation)For now, only the following utils are affected:
bgColor
,margin
andheight