This commit is contained in:
sion
2026-04-07 01:05:05 +08:00
parent edad10ff06
commit 5ca1274607
83 changed files with 1561 additions and 1241 deletions

View File

@@ -5,7 +5,7 @@ import '../../../../core/theme/app_theme.dart';
import '../../../../core/theme/app_theme_extension.dart';
import 'avatar_circle.dart';
/// 用户资料卡片 - 像 + 用名 + 徽章 + chevron
/// 用戶資料卡片 - 像 + 用名 + 徽章 + chevron
class ProfileCard extends StatelessWidget {
final dynamic user;
const ProfileCard({super.key, required this.user});
@@ -37,12 +37,12 @@ class ProfileCard extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
user?.username ?? '未登',
user?.username ?? '未登',
style: AppTextStyles.headlineLarge(context),
),
const SizedBox(height: 4),
Text(
'普通用',
'普通用',
style: AppTextStyles.bodyMedium(context).copyWith(
fontWeight: FontWeight.normal,
),