forked from mirrors/linphone-iphone
Placeholder : join the meeting waiting room when taping a meeting from the least
This commit is contained in:
parent
16a034e50d
commit
0aeef2f022
1 changed files with 9 additions and 0 deletions
|
|
@ -63,6 +63,15 @@ struct MeetingsFragment: View {
|
||||||
.background(.white)
|
.background(.white)
|
||||||
.clipShape(RoundedRectangle(cornerRadius: 20))
|
.clipShape(RoundedRectangle(cornerRadius: 20))
|
||||||
.shadow(color: .black.opacity(0.2), radius: 4)
|
.shadow(color: .black.opacity(0.2), radius: 4)
|
||||||
|
.onTapGesture {
|
||||||
|
do {
|
||||||
|
let meetingAddress = try Factory.Instance.createAddress(addr: model.model?.address ?? "")
|
||||||
|
TelecomManager.shared.meetingWaitingRoomDisplayed = true
|
||||||
|
TelecomManager.shared.meetingWaitingRoomSelected = meetingAddress
|
||||||
|
} catch {
|
||||||
|
Log.error("[MeetingsFragment] Couldn't create address from \(model.model?.address ?? "")")
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var body: some View {
|
var body: some View {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue