chapter are now grayed out if read
This commit is contained in:
parent
b7f4a3addb
commit
d52ba6fa51
3 changed files with 11 additions and 9 deletions
|
|
@ -55,7 +55,7 @@ final isExtendedStateProvider =
|
|||
);
|
||||
|
||||
typedef _$IsExtendedState = AutoDisposeNotifier<bool>;
|
||||
String _$sortChapterStateHash() => r'ff796f8f8ef4bf1c5b07694d24a68f28284b441e';
|
||||
String _$sortChapterStateHash() => r'0431856a60ee9dd4ff24b620b7b14d3572da8759';
|
||||
|
||||
/// Copied from Dart SDK
|
||||
class _SystemHash {
|
||||
|
|
@ -221,7 +221,7 @@ class _SortChapterStateProviderElement
|
|||
}
|
||||
|
||||
String _$chapterFilterDownloadedStateHash() =>
|
||||
r'3256f01a869af8c0681e1ff95ef6d942ca7f4f7b';
|
||||
r'974229e5af42122fbddb42e19fadb4eda82a7814';
|
||||
|
||||
abstract class _$ChapterFilterDownloadedState
|
||||
extends BuildlessAutoDisposeNotifier<int> {
|
||||
|
|
@ -368,7 +368,7 @@ class _ChapterFilterDownloadedStateProviderElement
|
|||
}
|
||||
|
||||
String _$chapterFilterUnreadStateHash() =>
|
||||
r'edbd4bfa31345b1ecea561d46788b202aef8b646';
|
||||
r'7fba451c72c9636354b3fbca36fa33fa45bd943f';
|
||||
|
||||
abstract class _$ChapterFilterUnreadState
|
||||
extends BuildlessAutoDisposeNotifier<int> {
|
||||
|
|
@ -514,7 +514,7 @@ class _ChapterFilterUnreadStateProviderElement
|
|||
}
|
||||
|
||||
String _$chapterFilterBookmarkedStateHash() =>
|
||||
r'45ccd61f2a2576ac20cc4ba275fad02b51568b8a';
|
||||
r'd60b909cd01aa56a4797e7ab9e3613985edc231e';
|
||||
|
||||
abstract class _$ChapterFilterBookmarkedState
|
||||
extends BuildlessAutoDisposeNotifier<int> {
|
||||
|
|
|
|||
|
|
@ -90,10 +90,12 @@ class UpdateChapterListTileWidget extends ConsumerWidget {
|
|||
overflow: TextOverflow.ellipsis,
|
||||
style: TextStyle(
|
||||
fontSize: 11,
|
||||
color: Theme.of(context)
|
||||
.textTheme
|
||||
.bodyLarge!
|
||||
.color)),
|
||||
color: chapter.isRead ?? false
|
||||
? Colors.grey
|
||||
: Theme.of(context)
|
||||
.textTheme
|
||||
.bodyLarge!
|
||||
.color)),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ part of 'sync_server.dart';
|
|||
// RiverpodGenerator
|
||||
// **************************************************************************
|
||||
|
||||
String _$syncServerHash() => r'0f4a07754abea35efb563ba8471b47d1c8854058';
|
||||
String _$syncServerHash() => r'546749093c21066a77c7bba22c1354a2bdf06e24';
|
||||
|
||||
/// Copied from Dart SDK
|
||||
class _SystemHash {
|
||||
|
|
|
|||
Loading…
Reference in a new issue