Documentation Index Fetch the complete documentation index at: https://docs.ahq.lat/realtime/llms.txt Use this file to discover all available pages before exploring further.
A dialog that presents leave and end meeting options. Displays different options based on host permissions.
meeting
RealtimeKitClient
onClick
((RtkLeaveDialogAlertButtonType) -> Void)?
nil
show(on:)
Void
import RealtimeKitUI let leaveDialog = RtkLeaveDialog(meeting: rtkClient)leaveDialog.show(on: self)
import RealtimeKitUI let leaveDialog = RtkLeaveDialog( meeting: rtkClient, onClick: { buttonType in switch buttonType { case .leaveMeeting: print("Leaving meeting") case .endMeeting: print("Ending meeting for all") default: break } })leaveDialog.show(on: self)