diff --git a/lib/ui/community/community_views/add_new_event_page.dart b/lib/ui/community/community_views/add_new_event_page.dart index a30c576b..efa687d4 100644 --- a/lib/ui/community/community_views/add_new_event_page.dart +++ b/lib/ui/community/community_views/add_new_event_page.dart @@ -203,12 +203,13 @@ class _AddNewEventPageState extends State { Divider(height: 1.w), 28.hb, if (widget.initTopic == null) _pickTopic(), - Align( - alignment: Alignment.centerLeft, - child: _renderTopic( - HotTopicModel(name: widget.topicName, id: widget.initTopic), + if (widget.initTopic != null) + Align( + alignment: Alignment.centerLeft, + child: _renderTopic( + HotTopicModel(name: widget.topicName, id: widget.initTopic), + ), ), - ), ], ).material(color: Colors.white), );