Media Player
Custom Media Player AdOn Controls
Start Media
window.WTN.MediaPlayer.playMedia({
url:"Your Media URL",
imageUrl:"Custom Image that should be shown in the notifcation"
})import { playMedia } from "webtonative/MediaPlayer";
playMedia({
url:"Your Media URL",
imageUrl:"Custom Image that should be shown in the notifcation"
})Pause Media
window.WTN.MediaPlayer.pauseMedia();import { pauseMedia } from "webtonative/MediaPlayer";
pauseMedia();Stop Media
window.WTN.MediaPlayer.stopMedia();import { stopMedia } from "webtonative/MediaPlayer";
stopMedia();Last updated