Leaving a room should be quick. Once a user wishes to end their interaction in the room, they can choose to leave the meeting. đź‘‹
100ms SDK provides a simple, no fuss API to do exactly that.
Invoke the leave method on instance of HMSSDK.
hmsSDK.leave()
Invoke the leaveSession method on instance of HMSRoomModel.
try await roomModel.leaveSession()
Code in context
importHMSRoomModelsstructMeetingView:View{
@ObservedObjectvar roomModel =HMSRoomModel(roomCode:"qdr-mik-seb")var body: some View{switch roomModel.roomState {case.notJoined,.leftMeeting:// Button to join the room...case.inMeeting:VStack{// Button to leave the roomButton{Task{try await roomModel.leaveSession()}} label:{Text("Leave")}}}}}
You should expect that the leave function always succeeds, even in scenarios like "No Internet Connection", "Low Battery", etc