mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-05-12 09:20:38 +00:00
+
This commit is contained in:
parent
b8fffca2b3
commit
79ca3b2e39
1 changed files with 13 additions and 0 deletions
|
|
@ -51,7 +51,19 @@ class ChapterListTileWidget extends ConsumerWidget {
|
|||
: Colors.white,
|
||||
onTap: () async => _handleInteraction(ref, context),
|
||||
title: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.end,
|
||||
children: [
|
||||
Container(
|
||||
width: 4,
|
||||
height: 4,
|
||||
decoration: BoxDecoration(
|
||||
color: chapter.isRead!
|
||||
? Colors.grey.withValues(alpha: 0.3)
|
||||
: context.primaryColor,
|
||||
borderRadius: BorderRadius.circular(2),
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 12),
|
||||
if (chapter.thumbnailUrl != null)
|
||||
_thumbnailPreview(context, chapter.thumbnailUrl),
|
||||
chapter.isBookmarked!
|
||||
|
|
@ -76,6 +88,7 @@ class ChapterListTileWidget extends ConsumerWidget {
|
|||
),
|
||||
subtitle: Row(
|
||||
children: [
|
||||
const SizedBox(width: 16),
|
||||
if (chapter.isFiller ?? false)
|
||||
Row(
|
||||
children: [
|
||||
|
|
|
|||
Loading…
Reference in a new issue