Links

Expand

The expand is shown after a user tap on the Mini Player
This feature is available only on iOS.
You have the opportunity to manually present or dismiss the Expand
SampleViewController.swift
import UIKit
import StayTunedSDK
final class SampleViewController: UIViewController {
func presentExpand() {
STExpand.shared?.present(from: self)
}
func dissmissExpand() {
STExpand.shared?.dismiss(completion: {
print("expand has been dismissed")
})
}
}