mirror of
				https://gitlab.com/comunic/comunicmobile
				synced 2025-11-04 04:04:18 +00:00 
			
		
		
		
	Add call button
This commit is contained in:
		@@ -25,10 +25,21 @@ class GroupConversationSection extends StatelessWidget {
 | 
				
			|||||||
          ),
 | 
					          ),
 | 
				
			||||||
          Positioned(
 | 
					          Positioned(
 | 
				
			||||||
            right: 1.0,
 | 
					            right: 1.0,
 | 
				
			||||||
            child: IconButton(
 | 
					            child: Row(
 | 
				
			||||||
              icon: Icon(Icons.settings),
 | 
					              children: [
 | 
				
			||||||
              onPressed: () => MainController.of(context)
 | 
					                conv.callCapabilities != CallCapabilities.NONE
 | 
				
			||||||
                  .openConversationSettingsRoute(conv),
 | 
					                    ? IconButton(
 | 
				
			||||||
 | 
					                        icon: Icon(Icons.phone),
 | 
				
			||||||
 | 
					                        onPressed: () =>
 | 
				
			||||||
 | 
					                            MainController.of(context).startCall(conv.id),
 | 
				
			||||||
 | 
					                      )
 | 
				
			||||||
 | 
					                    : Container(),
 | 
				
			||||||
 | 
					                IconButton(
 | 
				
			||||||
 | 
					                  icon: Icon(Icons.settings),
 | 
				
			||||||
 | 
					                  onPressed: () => MainController.of(context)
 | 
				
			||||||
 | 
					                      .openConversationSettingsRoute(conv),
 | 
				
			||||||
 | 
					                ),
 | 
				
			||||||
 | 
					              ],
 | 
				
			||||||
            ),
 | 
					            ),
 | 
				
			||||||
          )
 | 
					          )
 | 
				
			||||||
        ],
 | 
					        ],
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user