Functions

Link copied to clipboard

Content for in-call audio-only calls. Audio call is a call which returns false for Call.hasCapability when the argument is SendVideo

Link copied to clipboard

Content when the call has failed for whatever reason.

Link copied to clipboard

Content when the call has failed for whatever reason.

Link copied to clipboard
abstract fun StreamCallActivity.IncomingCallContent(modifier: Modifier, call: Call, isVideoType: Boolean, isShowingHeader: Boolean, headerContent: @Composable ColumnScope.() -> Unit?, detailsContent: @Composable ColumnScope.(participants: List<MemberState>, topPadding: Dp) -> Unit?, controlsContent: @Composable BoxScope.() -> Unit?, onBackPressed: () -> Unit, onCallAction: (CallAction) -> Unit)

Content for incoming call.

Link copied to clipboard

Content shown when there is data to be loaded.

Link copied to clipboard

Content for when the call was not answered.

Link copied to clipboard
abstract fun StreamCallActivity.OutgoingCallContent(modifier: Modifier, call: Call, isVideoType: Boolean, isShowingHeader: Boolean, headerContent: @Composable ColumnScope.() -> Unit?, detailsContent: @Composable ColumnScope.(participants: List<MemberState>, topPadding: Dp) -> Unit?, controlsContent: @Composable BoxScope.() -> Unit?, onBackPressed: () -> Unit, onCallAction: (CallAction) -> Unit)

Content for outgoing call.

Link copied to clipboard

Content shown when the required permissions are not granted and the call cannot happen. Note: There are other places that permissions are required like in the service etc.. Best practice is to request these permissions a screen before starting the call.

Link copied to clipboard

Call when the call was rejected.

Link copied to clipboard

Root content of the UI. If you override this, the rest might not work as expected and need to be called from this method.

Link copied to clipboard

Content for in-call for every other call that has video capabilities. Default call is a call which returns true for Call.hasCapability when the argument is SendVideo

Inherited functions

Link copied to clipboard
abstract fun loadingContent(activity: StreamCallActivity)
Link copied to clipboard
abstract fun setContent(activity: StreamCallActivity, call: Call)