Skip to content

Commit

Permalink
chore(deps): package_info_plus 8.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
w8385 committed Oct 14, 2024
1 parent ff70d67 commit 25fabfb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions lib/features/contest/screen/contest_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,10 @@ class _ContestViewState extends State<ContestView> {
backgroundColor: state
.isOnNotificationUpcomingContests[
index]
? MaterialStateProperty.all(
? WidgetStateProperty.all(
MySolvedColor
.secondaryButtonBackground)
: MaterialStateProperty.all(
: WidgetStateProperty.all(
MySolvedColor.main),
),
icon: Icon(
Expand All @@ -197,10 +197,10 @@ class _ContestViewState extends State<ContestView> {
backgroundColor: state
.isOnCalendarUpcomingContests[
index]
? MaterialStateProperty.all(
? WidgetStateProperty.all(
MySolvedColor
.secondaryButtonBackground)
: MaterialStateProperty.all(
: WidgetStateProperty.all(
MySolvedColor.main),
),
icon: Icon(
Expand Down
8 changes: 4 additions & 4 deletions lib/features/search_filter/screen/search_filter_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ class _SearchFilterViewState extends State<SearchFilterView> {
inactiveThumbColor: MySolvedColor.background,
inactiveTrackColor:
MySolvedColor.disabledButtonBackground,
trackOutlineColor: MaterialStateProperty.resolveWith(
trackOutlineColor: WidgetStateProperty.resolveWith(
(states) {
if (states.contains(MaterialState.selected)) {
if (states.contains(WidgetState.selected)) {
return null;
}
return MySolvedColor.disabledButtonBackground;
Expand Down Expand Up @@ -174,9 +174,9 @@ class _SearchFilterViewState extends State<SearchFilterView> {
inactiveThumbColor: MySolvedColor.background,
inactiveTrackColor:
MySolvedColor.disabledButtonBackground,
trackOutlineColor: MaterialStateProperty.resolveWith(
trackOutlineColor: WidgetStateProperty.resolveWith(
(states) {
if (states.contains(MaterialState.selected)) {
if (states.contains(WidgetState.selected)) {
return null;
}
return MySolvedColor.disabledButtonBackground;
Expand Down
4 changes: 2 additions & 2 deletions lib/features/setting/screen/setting_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ class _SettingViewState extends State<SettingView> {
inactiveThumbColor: MySolvedColor.background,
inactiveTrackColor:
MySolvedColor.disabledButtonBackground,
trackOutlineColor: MaterialStateProperty.resolveWith(
trackOutlineColor: WidgetStateProperty.resolveWith(
(states) {
if (states.contains(MaterialState.selected)) {
if (states.contains(WidgetState.selected)) {
return null;
}
return MySolvedColor.disabledButtonBackground;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies:
http: ^1.1.0
intl: ^0.18.0
meta: ^1.9.1
package_info_plus: ^8.0.3
package_info_plus: ^8.0.2
permission_handler: ^11.3.1
pie_chart: ^5.4.0
provider: ^6.0.5
Expand Down

0 comments on commit 25fabfb

Please sign in to comment.