opt dyn panel

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-09-03 13:29:16 +08:00
parent a635767561
commit 04830c7789
22 changed files with 1353 additions and 1426 deletions

View File

@@ -3,13 +3,13 @@ import 'package:PiliPlus/pages/article/widgets/opus_content.dart'
show moduleBlockedItem;
import 'package:flutter/material.dart';
Widget blockedItem(
ThemeData theme,
ModuleBlocked moduleBlocked, {
Widget blockedItem({
required ThemeData theme,
required ModuleBlocked blocked,
required double maxWidth,
}) {
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 13, vertical: 1),
child: moduleBlockedItem(theme, moduleBlocked, maxWidth - 26),
child: moduleBlockedItem(theme, blocked, maxWidth - 26),
);
}