You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
3.9 KiB
128 lines
3.9 KiB
import 'package:dating_touchme_app/generated/assets.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
/// 直播间顶部用户信息与操作区域
|
|
class LiveRoomUserHeader extends StatelessWidget {
|
|
const LiveRoomUserHeader({
|
|
super.key,
|
|
required this.userName,
|
|
required this.popularityText,
|
|
this.avatarAsset = Assets.imagesUserAvatar,
|
|
this.fireIconAsset = Assets.imagesFireIcon,
|
|
this.closeIconAsset = Assets.imagesCloseArrow,
|
|
this.onFollowTap,
|
|
this.onCloseTap,
|
|
});
|
|
|
|
final String userName;
|
|
final String popularityText;
|
|
final String avatarAsset;
|
|
final String fireIconAsset;
|
|
final String closeIconAsset;
|
|
final VoidCallback? onFollowTap;
|
|
final VoidCallback? onCloseTap;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Container(
|
|
height: 40.w,
|
|
padding: EdgeInsets.symmetric(horizontal: 3.w),
|
|
margin: EdgeInsets.only(left: 10.w),
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.all(Radius.circular(40.w)),
|
|
color: const Color.fromRGBO(0, 0, 0, .25),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Image.asset(
|
|
avatarAsset,
|
|
width: 34.w,
|
|
height: 34.w,
|
|
),
|
|
SizedBox(width: 7.w),
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Text(
|
|
userName,
|
|
style: TextStyle(
|
|
fontSize: 13.w,
|
|
color: Colors.white,
|
|
),
|
|
),
|
|
SizedBox(height: 2.w),
|
|
Row(
|
|
children: [
|
|
Image.asset(
|
|
fireIconAsset,
|
|
width: 10.w,
|
|
height: 12.w,
|
|
),
|
|
SizedBox(width: 4.w),
|
|
Text(
|
|
popularityText,
|
|
style: TextStyle(
|
|
fontSize: 10.w,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
SizedBox(width: 15.w),
|
|
GestureDetector(
|
|
onTap: onFollowTap,
|
|
child: Container(
|
|
width: 47.w,
|
|
height: 27.w,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.all(Radius.circular(27.w)),
|
|
color: const Color.fromRGBO(253, 43, 84, 1),
|
|
),
|
|
child: Center(
|
|
child: Text(
|
|
'关注',
|
|
style: TextStyle(
|
|
fontSize: 13.w,
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w500,
|
|
height: 1,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
GestureDetector(
|
|
onTap: onCloseTap,
|
|
child: Container(
|
|
width: 30.w,
|
|
height: 30.w,
|
|
margin: EdgeInsets.only(right: 15.w),
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.all(Radius.circular(30.w)),
|
|
color: const Color.fromRGBO(0, 0, 0, .3),
|
|
),
|
|
child: Center(
|
|
child: Image.asset(
|
|
closeIconAsset,
|
|
width: 14.w,
|
|
height: 14.w,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|
|
|