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 bottom sheet menu that displays meeting action options such as chat, polls, and participant list.
title
String?
nil
features
[MenuType]
onSelect
@escaping (MenuType) -> Void
show(on:)
Void
UIView
reload(title:features:)
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)