Skip to main content

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.

Example Image

To launch this screen we have to use below API.

func launchPollsScreen() {
let controller = DyteShowPollsViewController(meeting: self.meeting)
self.presentingViewController.present(controller, animated: true)
}