mirror of
				https://gitlab.com/comunic/comunicmobile
				synced 2025-11-04 04:04:18 +00:00 
			
		
		
		
	Add button to open new conversations
This commit is contained in:
		@@ -1,4 +1,5 @@
 | 
			
		||||
import 'package:comunic/ui/routes/main_route/main_route.dart';
 | 
			
		||||
import 'package:comunic/ui/widgets/tablet_mode/conversations_area_widget.dart';
 | 
			
		||||
import 'package:comunic/ui/widgets/tablet_mode/current_user_panel.dart';
 | 
			
		||||
import 'package:comunic/ui/widgets/tablet_mode/global_search_field.dart';
 | 
			
		||||
import 'package:comunic/ui/widgets/tablet_mode/memberships_panel.dart';
 | 
			
		||||
@@ -25,8 +26,11 @@ class _TabletRouteState extends State<TabletRoute> {
 | 
			
		||||
 | 
			
		||||
  Widget _buildAppBar() => ComunicTabletAppBarWidget();
 | 
			
		||||
 | 
			
		||||
  Widget _buildBody() => Row(
 | 
			
		||||
        children: <Widget>[_buildLeftPane(), _buildRightPane()],
 | 
			
		||||
  Widget _buildBody() => Stack(
 | 
			
		||||
        children: [
 | 
			
		||||
          Row(children: <Widget>[_buildLeftPane(), _buildRightPane()]),
 | 
			
		||||
          Positioned(right: 0, bottom: 0, child: ConversationsAreaWidget())
 | 
			
		||||
        ],
 | 
			
		||||
      );
 | 
			
		||||
 | 
			
		||||
  Widget _buildLeftPane() => Theme(
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user