Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-01 13:21:37 +08:00
parent aa8eef46da
commit 5c28376210
4 changed files with 13 additions and 9 deletions

View File

@@ -60,11 +60,12 @@ class _DynamicDetailPageState extends CommonDynPageState<DynamicDetailPage> {
padding: const EdgeInsets.only(right: 12),
child: Obx(
() {
final showTitle = controller.showTitle.value;
return AnimatedOpacity(
opacity: controller.showTitle.value ? 1 : 0,
opacity: showTitle ? 1 : 0,
duration: const Duration(milliseconds: 300),
child: IgnorePointer(
ignoring: !controller.showTitle.value,
ignoring: !showTitle,
child: AuthorPanel(
item: controller.dynItem,
isDetail: true,