A navigation bar with a title label and a close or back button.
Used for modal screens such as chat, polls, and participant lists.
Parameter Type Required Default Description titleString✅ - The title text displayed in the navigation bar
Property Type Required Default Description titleLabelRtkLabel- - The label displaying the navigation bar title (read-only) leftButtonRtkControlBarButton- - The close or back button on the left side (read-only)
Method Return Type Description setBackButtonClick(callBack:)VoidSets the tap handler for the back or close button
let navBar = RtkNavigationBar ( title : "Participants" )
let navBar = RtkNavigationBar ( title : "Chat" )
navBar. setBackButtonClick {
self . dismiss ( animated : true )