diff --git a/lib/forez/ui/routes/forez_route.dart b/lib/forez/ui/routes/forez_route.dart index af48ea6..c8f2bbd 100644 --- a/lib/forez/ui/routes/forez_route.dart +++ b/lib/forez/ui/routes/forez_route.dart @@ -9,6 +9,7 @@ import 'package:comunic/ui/routes/main_route/page_info.dart'; import 'package:comunic/ui/screens/conversations_list_screen.dart'; import 'package:comunic/ui/screens/group_sections/forez_presence_section.dart'; import 'package:comunic/ui/screens/group_sections/group_posts_section.dart'; +import 'package:comunic/ui/widgets/banner_widget.dart'; import 'package:comunic/ui/widgets/safe_state.dart'; import 'package:comunic/ui/widgets/status_widget.dart'; import 'package:comunic/ui/widgets/tab_transition_widget.dart'; @@ -115,7 +116,12 @@ class _ForezRouteBodyState extends SafeState { actions: [_buildPopupMenuButton()], bottom: TabBar(tabs: _tabs), ), - body: TabBarView(children: _tabsPages), + body: Column( + children: [ + BannerWidget(), + Expanded(child: TabBarView(children: _tabsPages)), + ], + ), ), ); }