From 8c2118c10087f0648be08dc8bb795ada18a9c4ab Mon Sep 17 00:00:00 2001 From: laiiihz Date: Mon, 8 Feb 2021 13:46:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=87=E9=A2=98=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/home/widget/animate_app_bar.dart | 2 +- lib/ui/community/community_views/topic/topic_detail_page.dart | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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(); },