fix: dynamic appbar

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2024-12-23 12:19:45 +08:00
parent a9e4f2081d
commit 9536b5db6f
6 changed files with 9 additions and 25 deletions

View File

@@ -127,15 +127,15 @@ class UserInfoCard extends StatelessWidget {
),
if (card.vip?.vipStatus == 1) ...[
const SizedBox(width: 8),
CachedNetworkImage(
imageUrl: card.vip!.label!.image!,
Image.network(
card.vip!.label!.image!,
height: 20,
),
],
if (card.nameplate?.image?.isNotEmpty == true) ...[
const SizedBox(width: 8),
CachedNetworkImage(
imageUrl: card.nameplate!.image!,
Image.network(
card.nameplate!.image!,
height: 20,
),
],