This commit is contained in:
Dr-Blank 2024-05-09 00:41:19 -04:00
parent ebc14a0448
commit f8597f7430
No known key found for this signature in database
GPG key ID: 7452CC63F210A266
13 changed files with 509 additions and 33 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_';
}