Skip to main content

MaestroPanel

MaestroPanel is a class that provides a panel view for you to add to your app's view heirarchy.

struct MaestroPanel: View

Parameters

  • width: A CGFloat defining the width of the panel.
  • height: A CGFloat defining the height of the panel.
  • pageID: A String corresponding to the pageID for the stream currently loaded into your app's video player.

Sample Usage

struct ContentView: View {
var body: some View {
MaestroPanel(
width: 400,
height: 900,
pageId: "my-page-id"
)
}
}