1.0.20+20 version bump
All checks were successful
Flutter Schmutter / build (push) Successful in 3m6s

This commit is contained in:
Flummi 2025-06-03 15:46:14 +02:00
parent 6c7c04fb05
commit e2d4bfb1db
3 changed files with 8 additions and 8 deletions

View File

@ -13,7 +13,7 @@ class MediaGrid extends StatefulWidget {
class _MediaGridState extends State<MediaGrid> { class _MediaGridState extends State<MediaGrid> {
final ScrollController _scrollController = ScrollController(); final ScrollController _scrollController = ScrollController();
final String _version = '1.0.17'; final String _version = '1.0.20+20';
List<MediaItem> mediaItems = []; List<MediaItem> mediaItems = [];
bool isLoading = false; bool isLoading = false;
Timer? _debounceTimer; Timer? _debounceTimer;

View File

@ -149,10 +149,11 @@ class _DetailViewState extends State<DetailView> {
children: item.tags.map((tag) { children: item.tags.map((tag) {
return Chip( return Chip(
label: Text(tag.tag), label: Text(tag.tag),
backgroundColor: { backgroundColor: switch (tag.id) {
1: Colors.green, 1 => Colors.green,
2: Colors.red 2 => Colors.red,
}[tag.id] ?? const Color(0xFF090909), _ => const Color(0xFF090909)
},
labelStyle: const TextStyle(color: Colors.white), labelStyle: const TextStyle(color: Colors.white),
); );
}).toList(), }).toList(),

View File

@ -16,10 +16,9 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts # In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix. # of the product and file versions while build-number is used as the build suffix.
version: 1.0.17 version: 1.0.20+20
environment: environment:
#sdk: ^3.9.0-172.0.dev
sdk: ^3.9.0-100.2.beta sdk: ^3.9.0-100.2.beta
# Dependencies specify other packages that your package needs in order to work. # Dependencies specify other packages that your package needs in order to work.
@ -31,7 +30,7 @@ environment:
dependencies: dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
http: ^1.4.0 # API-Anfragen http: ^1.4.0
video_player: ^2.2.10 video_player: ^2.2.10
# The following adds the Cupertino Icons font to your application. # The following adds the Cupertino Icons font to your application.