Content Detail
The Content Detail view display detailed informations about the content, an action to play its tracks and the list of its tracks
To display the Content Detail view
Cordova
// import this tag to your render template
<st-content-detail data="your-content-json" ref="myRef"></st-content-detail>
// Ex : <st-content-detail data="JSON.stringify(content)"></st-content-detail>
// You'll then be able to call
myRef.setOnTrackClick((track: STTrack) => {
// on trackClick
})
Last modified 2yr ago