From f88929170bc723666232f63991a1550219b5c90b Mon Sep 17 00:00:00 2001 From: Romain Petit Date: Wed, 23 Nov 2022 10:01:55 +0100 Subject: [PATCH] feaat() add didPrepare and didReady in sample app --- .../ExampleUIKit/ExampleUIkit/PlayerViewController.swift | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Examples/ExampleUIKit/ExampleUIkit/PlayerViewController.swift b/Examples/ExampleUIKit/ExampleUIkit/PlayerViewController.swift index 1d69aa27..9a66986a 100644 --- a/Examples/ExampleUIKit/ExampleUIkit/PlayerViewController.swift +++ b/Examples/ExampleUIKit/ExampleUIkit/PlayerViewController.swift @@ -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") },