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