opt: staff: use fixed width

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2024-11-17 11:43:41 +08:00
parent 5d0746a7d0
commit 00c71ce692

View File

@@ -318,10 +318,10 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
: SelfSizedHorizontalList(
gapSize: 10,
itemCount: videoItem['staff'].length,
childBuilder: (index) => Column(
mainAxisSize: MainAxisSize.min,
children: [
GestureDetector(
childBuilder: (index) => Container(
width: 70,
alignment: Alignment.center,
child: GestureDetector(
onTap: () => Get.toNamed(
'/member?mid=${videoItem['staff'][index].mid}',
arguments: {
@@ -329,7 +329,10 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
heroTag: Utils.makeHeroTag(
videoItem['staff'][index].mid),
}),
child: NetworkImgLayer(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
NetworkImgLayer(
type: 'avatar',
src: videoItem['staff'][index].face,
width: 40,
@@ -337,15 +340,15 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
fadeInDuration: Duration.zero,
fadeOutDuration: Duration.zero,
),
),
const SizedBox(height: 2),
Text(
videoItem['staff'][index].name.length > 5
? '${videoItem['staff'][index].name.toString().substring(0, 5)}...'
: videoItem['staff'][index].name,
videoItem['staff'][index].name,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(
color:
videoItem['staff'][index].vip.status >
color: videoItem['staff'][index]
.vip
.status >
0 &&
videoItem['staff'][index]
.vip
@@ -359,14 +362,17 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
videoItem['staff'][index].title,
style: TextStyle(
fontSize: 12,
color:
Theme.of(context).colorScheme.outline,
color: Theme.of(context)
.colorScheme
.outline,
),
),
],
),
),
),
),
),
if (isHorizontal) ...[
const SizedBox(width: 10),
Expanded(child: actionGrid(context, videoIntroController)),