feat: Add miniplayer

This commit is contained in:
Dr-Blank 2024-05-14 10:11:25 -04:00
parent 610d9a2aa0
commit 7f5309d10a
No known key found for this signature in database
GPG key ID: 7452CC63F210A266
25 changed files with 355 additions and 29 deletions

View file

@ -0,0 +1,12 @@
class HeroTagPrefixes {
static const String heroTagPrefix = 'hero_tag_';
/// The hero tag for the book cover
static const String bookCover = 'book_cover_';
static const String bookCoverSkeleton = 'book_cover_skeleton_';
static const String authorAvatar = 'author_avatar_';
static const String authorAvatarSkeleton = 'author_avatar_skeleton_';
static const String authorName = 'author_name_';
static const String bookTitle = 'book_title_';
static const String narratorName = 'narrator_name_';
}