Pre-built Polls Screen
Overview: How to use existing polls screen.
We have to use a class DyteShowPollsViewController, which is used to show exising list of polls created by participants in current meeting. With a button at the bottom to create polls.
To launch this screen we have to use below API.
func launchPollsScreen() {
let controller = DyteShowPollsViewController(meeting: self.meeting)
self.presentingViewController.present(controller, animated: true)
}