final change: Trakt.tv icon

This commit is contained in:
Schnitzel5 2025-08-25 14:58:18 +02:00
parent 62d6201ced
commit 31338eb023
4 changed files with 3 additions and 9 deletions

View file

@ -25,7 +25,6 @@ jobs:
uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: 3.32.8
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
@ -101,7 +100,6 @@ jobs:
uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: 3.32.8
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
@ -158,7 +156,6 @@ jobs:
uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: 3.32.8
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
@ -202,7 +199,6 @@ jobs:
uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: 3.32.8
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
@ -270,7 +266,6 @@ jobs:
uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: 3.32.8
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
@ -411,7 +406,6 @@ jobs:
uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: 3.32.8
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 KiB

View file

@ -75,12 +75,12 @@ TrackStatus toTrackStatus(TrackStatus status, ItemType itemType, int syncId) {
4 => (
"assets/trackers_icons/tracker_simkl.png",
"Simkl",
const Color.fromARGB(255, 35, 15, 90),
const Color.fromARGB(8, 8, 8, 1),
),
_ => (
"assets/trackers_icons/tracker_trakt.webp",
"assets/trackers_icons/tracker_trakt.png",
"Trakt",
const Color.fromARGB(255, 90, 51, 81),
const Color.fromARGB(175, 175, 54, 162),
),
};
}