master #81

Closed
malo wants to merge 322 commits from master into feat/bloc_layout/new-package
Showing only changes of commit a595183107 - Show all commits

View File

@ -53,7 +53,12 @@ abstract class ThemeResolver<S, T, E> {
}) { }) {
final themeExtension = findExtension(context); final themeExtension = findExtension(context);
if (themeExtension != null) { if (themeExtension != null) {
return computeExtensionValueFn(context, defaultValue, themeExtension); return computeExtensionValueFn(
context,
defaultValue,
themeExtension,
extra: extra,
);
} }
return defaultValue; return defaultValue;
} }