Skip to content
Snippets Groups Projects

Resolve "Remove deprecations"

Merged Benoît Harrault requested to merge 17-remove-deprecations into master
4 files
+ 23
18
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 2
2
@@ -42,7 +42,7 @@ final ColorScheme lightColorScheme = ColorScheme.light(
onSurface: textSwatch.shade500,
surface: textSwatch.shade50,
surfaceContainerHighest: Colors.white,
shadow: textSwatch.shade900.withOpacity(.1),
shadow: textSwatch.shade900.withValues(alpha: .1),
);
final ColorScheme darkColorScheme = ColorScheme.dark(
@@ -53,7 +53,7 @@ final ColorScheme darkColorScheme = ColorScheme.dark(
onSurface: textSwatch.shade300,
surface: const Color(0xFF262630),
surfaceContainerHighest: const Color(0xFF282832),
shadow: textSwatch.shade900.withOpacity(.2),
shadow: textSwatch.shade900.withValues(alpha: .2),
);
final ThemeData lightTheme = ThemeData(
Loading