仅年度会员粉色昵称,所有会员显示角标,与官方B站保持一致

This commit is contained in:
VillagerTom
2024-06-10 16:47:18 +08:00
committed by orz12
parent 4af453531f
commit 1cdc2ee06e

View File

@@ -94,8 +94,7 @@ class ReplyItem extends StatelessWidget {
type: 'avatar',
),
),
if (replyItem!.member!.vip!['vipStatus'] > 0 &&
replyItem!.member!.vip!['vipType'] == 2)
if (replyItem!.member!.vip!['vipStatus'] > 0)
Positioned(
right: 0,
bottom: 0,
@@ -182,7 +181,8 @@ class ReplyItem extends StatelessWidget {
Text(
replyItem!.member!.uname!,
style: TextStyle(
color: replyItem!.member!.vip!['vipStatus'] > 0
color: (replyItem!.member!.vip!['vipStatus'] > 0 &&
replyItem!.member!.vip!['vipType'] == 2)
? const Color.fromARGB(255, 251, 100, 163)
: Theme.of(context).colorScheme.outline,
fontSize: 13,