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