diff --git a/lib/common/widgets/pendant_avatar.dart b/lib/common/widgets/pendant_avatar.dart index 2b12011ad..a475ad964 100644 --- a/lib/common/widgets/pendant_avatar.dart +++ b/lib/common/widgets/pendant_avatar.dart @@ -147,9 +147,10 @@ class PendantAvatar extends StatelessWidget { semanticLabel: _badgeType.desc, ), }; + final offset = isMemberAvatar ? 2.0 : 0.0; return Positioned( - right: isMemberAvatar ? 2 : 0, - bottom: isMemberAvatar ? 2 : 0, + right: offset, + bottom: offset, child: IgnorePointer( child: DecoratedBox( decoration: BoxDecoration( diff --git a/lib/plugin/pl_player/view.dart b/lib/plugin/pl_player/view.dart index fc543d06b..67c648baf 100644 --- a/lib/plugin/pl_player/view.dart +++ b/lib/plugin/pl_player/view.dart @@ -641,7 +641,7 @@ class _PLVideoPlayerState extends State return PopupMenuItem( enabled: enabled, height: 35, - padding: const EdgeInsets.only(left: 20), + padding: const EdgeInsets.only(left: 15, right: 10), value: item.quality, onTap: () async { if (currentVideoQa.code == item.quality) { @@ -675,7 +675,10 @@ class _PLVideoPlayerState extends State item.newDesc ?? '', style: enabled ? const TextStyle(color: Colors.white, fontSize: 13) - : null, + : const TextStyle( + color: Color(0x62FFFFFF), + fontSize: 13, + ), ), ); },