fix: 增加排序

This commit is contained in:
rang 2026-01-09 17:58:36 +08:00
parent eef72c6aa6
commit 03cec3f4b6
13 changed files with 1151 additions and 925 deletions

View file

@ -3,6 +3,10 @@ class HeroTagPrefixes {
/// The hero tag for the book cover
static const String bookCover = 'book_cover_';
static String bookCoverWith(String? id) {
return bookCover + (id ?? '');
}
static const String bookCoverSkeleton = 'book_cover_skeleton_';
static const String authorAvatar = 'author_avatar_';
static const String authorAvatarSkeleton = 'author_avatar_skeleton_';
@ -10,4 +14,8 @@ class HeroTagPrefixes {
static const String bookTitle = 'book_title_';
static const String narratorName = 'narrator_name_';
static const String libraryItemPlayButton = 'library_item_play_button_';
/// (Desktop)
static const String controlsCenter = 'player_controls_desktop_center';
static const String controlsRight = 'player_controls_desktop_right';
}