Skip to content

Commit f05926b

Browse files
committed
fix tints
1 parent 27f9fdf commit f05926b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
workflow_dispatch:
1111

1212
env:
13-
FLUTTER_VERSION: 3.16.5
13+
FLUTTER_VERSION: 3.22.0
1414

1515
jobs:
1616
analyze:

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main
77

88
env:
9-
FLUTTER_VERSION: 3.16.9
9+
FLUTTER_VERSION: 3.22.0
1010

1111
jobs:
1212
publish:

lib/src/theme.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ ColorScheme _darkScheme(Color color) {
7474
seedColor: color,
7575
brightness: Brightness.dark,
7676
surfaceTint: _darkBase,
77-
surface: _darkBase.scale(lightness: 0.03),
77+
surface: _darkBase,
7878
outline: _darkBase.scale(lightness: 0.28),
7979
);
8080
}
@@ -268,6 +268,7 @@ Color _indicatorColor(ColorScheme colorScheme) =>
268268
AppBarTheme _appBarTheme(ColorScheme colorScheme) {
269269
return AppBarTheme(
270270
backgroundColor: colorScheme.surface,
271+
surfaceTintColor: colorScheme.surface,
271272
);
272273
}
273274

0 commit comments

Comments
 (0)