mirror of
				https://gitlab.com/comunic/comunicmobile
				synced 2025-11-04 04:04:18 +00:00 
			
		
		
		
	Fix issue
This commit is contained in:
		@@ -81,6 +81,7 @@ class _GroupsListScreenState extends SafeState<GroupsListScreen> {
 | 
				
			|||||||
        right: 15,
 | 
					        right: 15,
 | 
				
			||||||
        bottom: 15,
 | 
					        bottom: 15,
 | 
				
			||||||
        child: FloatingActionButton(
 | 
					        child: FloatingActionButton(
 | 
				
			||||||
 | 
					          heroTag: null,
 | 
				
			||||||
          child: Icon(Icons.add),
 | 
					          child: Icon(Icons.add),
 | 
				
			||||||
          onPressed: _createGroup,
 | 
					          onPressed: _createGroup,
 | 
				
			||||||
        ),
 | 
					        ),
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -26,6 +26,7 @@ class _OpenConversationButtonState extends State<OpenConversationButton> {
 | 
				
			|||||||
        children: <Widget>[
 | 
					        children: <Widget>[
 | 
				
			||||||
          _showConversationsList ? _buildConversationsList() : Container(),
 | 
					          _showConversationsList ? _buildConversationsList() : Container(),
 | 
				
			||||||
          FloatingActionButton(
 | 
					          FloatingActionButton(
 | 
				
			||||||
 | 
					            heroTag: null,
 | 
				
			||||||
            onPressed: () => _setShowConversationsList(!_showConversationsList),
 | 
					            onPressed: () => _setShowConversationsList(!_showConversationsList),
 | 
				
			||||||
            child: Icon(_showConversationsList ? Icons.close : Icons.message),
 | 
					            child: Icon(_showConversationsList ? Icons.close : Icons.message),
 | 
				
			||||||
          )
 | 
					          )
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -206,6 +206,7 @@ class _MembershipsPanelState extends SafeState<MembershipsPanel> {
 | 
				
			|||||||
            .openConversation(conversation.id, fullScreen: true),
 | 
					            .openConversation(conversation.id, fullScreen: true),
 | 
				
			||||||
        trailing: conversation.isHavingCall
 | 
					        trailing: conversation.isHavingCall
 | 
				
			||||||
            ? FloatingActionButton(
 | 
					            ? FloatingActionButton(
 | 
				
			||||||
 | 
					                heroTag: null,
 | 
				
			||||||
                child: Icon(Icons.call),
 | 
					                child: Icon(Icons.call),
 | 
				
			||||||
                onPressed: () =>
 | 
					                onPressed: () =>
 | 
				
			||||||
                    MainController.of(context).startCall(conversation.id),
 | 
					                    MainController.of(context).startCall(conversation.id),
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user