mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2026-02-16 14:29:35 +00:00
fix: 增加排序
This commit is contained in:
parent
eef72c6aa6
commit
03cec3f4b6
13 changed files with 1151 additions and 925 deletions
|
|
@ -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';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue