import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; const NowPlayingLayout = () => { return ( {/* top bar */} Playing from Your Library Songs {/* album art */} {/* song/album/artist title */} Name of the Song Cool Artist {/* seek bar */} 00:00 00:00 {/* main player controls */} {/* extra controls */} ); }; const styles = StyleSheet.create({ text: { color: 'white', fontWeight: 'bold', }, }); export default NowPlayingLayout;