File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
examples/app/lib/screens/home Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments