RtkPluginViewController
Overview
A viewcontroller which lists all available plugins from their preset, and ability to enable or disable plugins.
Topics:
Creating a RtkPluginViewController.
init(plugins: [RtkPlugin])
Parameters:
meeting: Current ongoing meeting object.
let controller = RtkPluginViewController(plugins: realtimeKitClient.plugins.all)
let navigationController = UINavigationController(rootViewController: controller)
navigationController.modalPresentationStyle = .fullScreen
present(navigationController, animated: true, completion: nil)