Skip to content

Commit

Permalink
feaat() add didPrepare and didReady in sample app
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainPetit1 committed Nov 23, 2022
1 parent df71065 commit f889291
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Examples/ExampleUIKit/ExampleUIkit/PlayerViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ class PlayerViewController: UIViewController {

let playerView: ApiVideoPlayerView = {
let events = PlayerEvents(
didPrepare: { () in
print("didPrepare")
},
didReady: { () in
print("didReady")
},
didPause: { () in
print("paused")
},
Expand Down

0 comments on commit f889291

Please sign in to comment.