チャット、投票、参加者リストなど、ミーティング操作の選択肢を表示するボトムシートメニューです。
import RealtimeKitUI
let menu = RtkMoreMenu(
features: [.chat, .polls, .participants],
onSelect: { menuType in
print("Selected: \(menuType)")
}
)
menu.show(on: self.view)
import RealtimeKitUI
let menu = RtkMoreMenu(
title: "More Options",
features: [.chat, .polls, .participants],
onSelect: { menuType in
switch menuType {
case .chat:
print("Open chat")
case .polls:
print("Open polls")
case .participants:
print("Open participants")
default:
break
}
}
)
menu.show(on: self.view)