Skip to content

Commit 3fee25e

Browse files
committed
fix
1 parent e8e3e49 commit 3fee25e

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -283,11 +283,7 @@ jobs:
283283
needs: [setup]
284284
strategy:
285285
matrix:
286-
# We want to support the two latest stable Flutter versions
287-
# Unfortunately, we currently can't support Flutter 3.22 because it's
288-
# incompatible with `dart_style: ^2.3.7` that `drift_dev` has to use:
289-
# https://github.com/simolus3/drift/issues/3302
290-
flutter: ["3.24"]
286+
flutter: ["3.24", "3.27"]
291287

292288
steps:
293289
- uses: actions/checkout@v4

examples/app/lib/screens/home/drawer.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ class _CategoryDrawerEntry extends ConsumerWidget {
148148
padding: const EdgeInsets.symmetric(horizontal: 8),
149149
child: Material(
150150
color: isActive
151-
? Colors.orangeAccent.withValues(alpha: 0.3)
151+
// ignore: deprecated_member_use
152+
? Colors.orangeAccent.withOpacity(0.3)
152153
: Colors.transparent,
153154
borderRadius: BorderRadius.circular(8),
154155
child: InkWell(

0 commit comments

Comments
 (0)