diff --git a/lib/plugin/pl_player/widgets/bottom_control.dart b/lib/plugin/pl_player/widgets/bottom_control.dart index 86cdba0b..046feba9 100644 --- a/lib/plugin/pl_player/widgets/bottom_control.dart +++ b/lib/plugin/pl_player/widgets/bottom_control.dart @@ -197,10 +197,12 @@ class BottomControl extends StatelessWidget implements PreferredSizeWidget { itemBuilder: (BuildContext context) { return _.speedsList.map((double speed) { return PopupMenuItem( + height: 35, + padding: const EdgeInsets.only(left: 30), value: speed, child: Text( "${speed}X", - style: const TextStyle(color: Colors.white), + style: const TextStyle(color: Colors.white, fontSize: 13), semanticsLabel: "$speed倍速", ), );