feat: 动态跳转番剧

This commit is contained in:
guozhigq
2023-08-18 11:12:18 +08:00
parent 083d05ed7e
commit 85ff7c7a92
3 changed files with 37 additions and 1 deletions

View File

@ -36,7 +36,8 @@ Widget author(item, context) {
Text(
item.modules.moduleAuthor.name,
style: TextStyle(
color: item.modules.moduleAuthor!.vip!['status'] > 0
color: item.modules.moduleAuthor!.vip != null &&
item.modules.moduleAuthor!.vip['status'] > 0
? const Color.fromARGB(255, 251, 100, 163)
: Theme.of(context).colorScheme.onBackground,
fontSize: Theme.of(context).textTheme.titleSmall!.fontSize,