material-foundation / material-theme-builder

Visualize dynamic color and create a custom Material Theme.
https://material-foundation.github.io/material-theme-builder/
Apache License 2.0
360 stars 27 forks source link

The theme exporter for Flutter contains deprecated code #305

Closed chardinson closed 3 weeks ago

chardinson commented 1 month ago

scaffoldBackgroundColor: colorScheme.background,

'background' is deprecated and shouldn't be used. Use surface instead. This feature was deprecated after v3.18.0-0.1.pre. (Documentation) Try replacing the use of the deprecated member with the replacement.


background: background,

'background' is deprecated and shouldn't be used. Use surface instead. This feature was deprecated after v3.18.0-0.1.pre. (Documentation) Try replacing the use of the deprecated member with the replacement.


onBackground: onBackground,

'onBackground' is deprecated and shouldn't be used. Use onSurface instead. This feature was deprecated after v3.18.0-0.1.pre. (Documentation) Try replacing the use of the deprecated member with the replacement.


surfaceVariant: surfaceVariant,

'surfaceVariant' is deprecated and shouldn't be used. Use surfaceContainerHighest instead. This feature was deprecated after v3.18.0-0.1.pre. (Documentation) Try replacing the use of the deprecated member with the replacement.