You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importiTunesfrom'react-native-itunes';iTunes.getPlaylists({fields: ['name'],// more performant to filter by `fields`:name, and then `query`:name}).then(playlists=>{console.log(playlists);});
importiTunesfrom'react-native-itunes';iTunes.getAlbums().then(albums=>{console.log(albums);// [TrackItem] with 3 properties: albumTitle, albumArtist and artwork});
Get current track (with playing time and artwork)
importiTunesfrom'react-native-itunes';iTunes.getCurrentTrack().then(track=>{console.log(track);// TrackItem with additional properties: artwork and currentPlayTime});