Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-03-06 10:17:47 +08:00
parent 381c385726
commit 631197e3b9
80 changed files with 987 additions and 3281 deletions

View File

@@ -350,10 +350,7 @@ class _DynTopicPageState extends State<DynTopicPage> with DynMixin {
final item = response[index];
if (item.dynamicCardItem != null) {
return DynamicPanel(
item: item.dynamicCardItem!,
maxWidth: maxWidth,
);
return DynamicPanel(item: item.dynamicCardItem!);
}
return Text(item.topicType ?? 'err');
@@ -368,10 +365,7 @@ class _DynTopicPageState extends State<DynTopicPage> with DynMixin {
}
final item = response[index];
if (item.dynamicCardItem != null) {
return DynamicPanel(
item: item.dynamicCardItem!,
maxWidth: maxWidth,
);
return DynamicPanel(item: item.dynamicCardItem!);
} else {
return Text(item.topicType ?? 'err');
}