Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-10 21:07:06 +08:00
parent 309c871919
commit 88c2ba8059
5 changed files with 19 additions and 14 deletions

View File

@@ -158,9 +158,9 @@ class _PgcPanelState extends State<PgcPanel> {
return Container(
width: 150,
height: 60,
margin: EdgeInsets.only(
right: index == widget.pages.length - 1 ? 0 : 10,
),
margin: index != widget.pages.length - 1
? const EdgeInsets.only(right: 10)
: null,
child: Material(
color: theme.colorScheme.onInverseSurface,
borderRadius: const BorderRadius.all(Radius.circular(6)),