diff --git a/lib/pages/home/widget/animate_app_bar.dart b/lib/pages/home/widget/animate_app_bar.dart index f3ebbd7e..29b86b23 100644 --- a/lib/pages/home/widget/animate_app_bar.dart +++ b/lib/pages/home/widget/animate_app_bar.dart @@ -41,7 +41,7 @@ class _AnimateAppBarState extends State { Widget build(BuildContext context) { final appProvider = Provider.of(context); return AppBar( - title: 'TEST'.text.make(), + title: '人才公寓智慧小区'.text.make(), backgroundColor: _bgColor, elevation: 0, centerTitle: true, diff --git a/lib/ui/community/community_views/topic/topic_detail_page.dart b/lib/ui/community/community_views/topic/topic_detail_page.dart index 3de39c3d..c6af2005 100644 --- a/lib/ui/community/community_views/topic/topic_detail_page.dart +++ b/lib/ui/community/community_views/topic/topic_detail_page.dart @@ -52,7 +52,7 @@ class _TopicDetailPageState extends State { SliverPersistentHeader( delegate: TopicSliverHeader( id: widget.model.id, - title: 'TEST', + title: widget.model.summary, imgPath: widget.model.firstImg, subTitle: widget.model.content, ), @@ -64,7 +64,7 @@ class _TopicDetailPageState extends State { (context, index) { final item = items[index] as EventItemModel; return ChatCard( - model:item, + model: item, onDelete: () { _refreshController.callRefresh(); },