Interface MessageComposerLeadingContent
-
- All Implemented Interfaces:
-
io.getstream.chat.android.ui.feature.messages.composer.content.MessageComposerContent
public interface MessageComposerLeadingContent implements MessageComposerContent
Represents the content shown at the start of MessageComposerView.
-
-
Method Summary
Modifier and Type Method Description abstract Function0<Unit>getAttachmentsButtonClickListener()Click listener for the pick attachments button. abstract UnitsetAttachmentsButtonClickListener(Function0<Unit> attachmentsButtonClickListener)Click listener for the pick attachments button. abstract Function0<Unit>getCommandsButtonClickListener()Click listener for the pick commands button. abstract UnitsetCommandsButtonClickListener(Function0<Unit> commandsButtonClickListener)Click listener for the pick commands button. -
-
Method Detail
-
getAttachmentsButtonClickListener
abstract Function0<Unit> getAttachmentsButtonClickListener()
Click listener for the pick attachments button.
-
setAttachmentsButtonClickListener
abstract Unit setAttachmentsButtonClickListener(Function0<Unit> attachmentsButtonClickListener)
Click listener for the pick attachments button.
-
getCommandsButtonClickListener
abstract Function0<Unit> getCommandsButtonClickListener()
Click listener for the pick commands button.
-
setCommandsButtonClickListener
abstract Unit setCommandsButtonClickListener(Function0<Unit> commandsButtonClickListener)
Click listener for the pick commands button.
-
-
-
-