Skip to content

Commit

Permalink
Upgrade dependencies; upgrade to flutter 3.22
Browse files Browse the repository at this point in the history
Fix two deprecations. Don't upgrade package_info_plus as it has
breaking changes in version 6.0.0 by requiring Java 17:
https://pub.dev/packages/package_info_plus/changelog
and that seems to be not yet available for our integration test running
on github actions
  • Loading branch information
holybiber committed Jul 12, 2024
1 parent 47b99fe commit 4df7e96
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 85 deletions.
4 changes: 2 additions & 2 deletions lib/widgets/main_drawer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ class CategoryTile extends ConsumerWidget {
child: TextButton(
style: ButtonStyle(
alignment: Alignment.centerLeft,
shape: const MaterialStatePropertyAll(
shape: const WidgetStatePropertyAll(
RoundedRectangleBorder()),
backgroundColor: MaterialStatePropertyAll(
backgroundColor: WidgetStatePropertyAll(
(englishName == _page)
? Theme.of(context).focusColor
: null)),
Expand Down
Loading

0 comments on commit 4df7e96

Please sign in to comment.