opt qa btn

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-23 09:42:08 +08:00
parent d69649f1b6
commit 16a3e21db4
2 changed files with 8 additions and 4 deletions

View File

@@ -147,9 +147,10 @@ class PendantAvatar extends StatelessWidget {
semanticLabel: _badgeType.desc, semanticLabel: _badgeType.desc,
), ),
}; };
final offset = isMemberAvatar ? 2.0 : 0.0;
return Positioned( return Positioned(
right: isMemberAvatar ? 2 : 0, right: offset,
bottom: isMemberAvatar ? 2 : 0, bottom: offset,
child: IgnorePointer( child: IgnorePointer(
child: DecoratedBox( child: DecoratedBox(
decoration: BoxDecoration( decoration: BoxDecoration(

View File

@@ -641,7 +641,7 @@ class _PLVideoPlayerState extends State<PLVideoPlayer>
return PopupMenuItem<int>( return PopupMenuItem<int>(
enabled: enabled, enabled: enabled,
height: 35, height: 35,
padding: const EdgeInsets.only(left: 20), padding: const EdgeInsets.only(left: 15, right: 10),
value: item.quality, value: item.quality,
onTap: () async { onTap: () async {
if (currentVideoQa.code == item.quality) { if (currentVideoQa.code == item.quality) {
@@ -675,7 +675,10 @@ class _PLVideoPlayerState extends State<PLVideoPlayer>
item.newDesc ?? '', item.newDesc ?? '',
style: enabled style: enabled
? const TextStyle(color: Colors.white, fontSize: 13) ? const TextStyle(color: Colors.white, fontSize: 13)
: null, : const TextStyle(
color: Color(0x62FFFFFF),
fontSize: 13,
),
), ),
); );
}, },