初始化

This commit is contained in:
谢宇宁
2026-09-15 15:44:13 +07:00
commit a23ba685e9
1065 changed files with 101122 additions and 0 deletions
+69
View File
@@ -0,0 +1,69 @@
import 'package:flutter/material.dart';
import 'package:hgdj/tools_base/widget/net_image_widget.dart';
///用户头像(包括VIP
class HeaderWidget extends StatelessWidget {
final String headPath;
final double headWidth;
final double headHeight;
//vip显示的高度
final double? borderHeight;
final Widget? defaultHead;
final int level;
final bool isCircle;
final double? radius;
final VoidCallback? tabCallback; //点击头像
const HeaderWidget({
super.key,
required this.headPath,
required this.level,
required this.headWidth,
required this.headHeight,
this.borderHeight,
this.defaultHead,
this.tabCallback,
this.isCircle = true,
this.radius,
});
@override
Widget build(BuildContext context) {
Color _borderColor = _configVIPInfo();
return GestureDetector(
onTap: tabCallback,
child: Container(
width: headWidth,
height: headHeight,
decoration: isCircle
? BoxDecoration(
border:
Border.all(width: borderHeight ?? 4, color: _borderColor),
shape: BoxShape.circle,
)
: null,
child: ClipRRect(
borderRadius:
BorderRadius.circular(isCircle ? headWidth : radius ?? 0),
child: NetworkImageLoader(
imageUrl: headPath,
width: headWidth,
height: headHeight,
fit: BoxFit.fitWidth,
),
),
),
);
}
///获取对应VIP的边框颜色和图片
Color _configVIPInfo() {
return const Color.fromRGBO(253, 45, 85, 1);
}
}