diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a1812d0..1c6ddd6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - 编辑:修复编辑器的滚动导致页面标题栏背景色改变的问题。 - 应该只在页面主体滚动时改变颜色。 - 首页:避免首页四个选项卡多次来回切换时重复加载的问题。 +- 通知:修复包含长楼层的评分详情页面无法滚动的问题。 ### Changed diff --git a/lib/features/notification/view/notification_detail_page.dart b/lib/features/notification/view/notification_detail_page.dart index 2cf6eb50..e6cc10ef 100644 --- a/lib/features/notification/view/notification_detail_page.dart +++ b/lib/features/notification/view/notification_detail_page.dart @@ -53,7 +53,7 @@ class _NoticeDetailPage extends State { // success state. final post = state.post!; if (widget.noticeType == NoticeType.rate) { - return PostCard(post); + return SingleChildScrollView(child: PostCard(post)); } if (state.replyParameters != null) {