A control bar button that opens a bottom sheet menu with meeting actions such as chat, polls, and participant list.
Parameter Type Required Default Description meetingRealtimeKitClient✅ - The RealtimeKit client instance presentingViewControllerUIViewController✅ - View controller used to present the bottom sheet settingViewControllerCompletion(() -> Void)?❌ nilClosure called when the settings view controller dismisses
Method Return Type Description hideBottomSheet()VoidProgrammatically dismisses the bottom sheet menu
let moreButton = RtkMoreButtonControlBar (
presentingViewController : self
view. addSubview ( moreButton )
let moreButton = RtkMoreButtonControlBar (
presentingViewController : self ,
settingViewControllerCompletion : {
print ( "Settings dismissed" )
view. addSubview ( moreButton )