|
|
@ -7,10 +7,12 @@ export default function favoritePage() {
|
|
|
|
const MUSIC_LIST : Music[] = [
|
|
|
|
const MUSIC_LIST : Music[] = [
|
|
|
|
new Music("La pharmacie", "Jul",require("../assets/images/jul.png")),
|
|
|
|
new Music("La pharmacie", "Jul",require("../assets/images/jul.png")),
|
|
|
|
new Music("Deux frères", "PNL", require("../assets/images/pnl.png")),
|
|
|
|
new Music("Deux frères", "PNL", require("../assets/images/pnl.png")),
|
|
|
|
|
|
|
|
new Music("Bambina", "PNL", "https://upload.wikimedia.org/wikipedia/en/a/a0/PNL_-_Dans_la_l%C3%A9gende.png"),
|
|
|
|
new Music("Stratos", "Kekra", "https://images.genius.com/ddc9cadedd1d4cef0860aaa85af9cd46.705x705x1.png"),
|
|
|
|
new Music("Stratos", "Kekra", "https://images.genius.com/ddc9cadedd1d4cef0860aaa85af9cd46.705x705x1.png"),
|
|
|
|
new Music("Autobahn", "Sch", "https://images.genius.com/83b6c98680d38bde1571f6b4093244b5.1000x1000x1.jpg"),
|
|
|
|
new Music("Autobahn", "Sch", "https://images.genius.com/83b6c98680d38bde1571f6b4093244b5.1000x1000x1.jpg"),
|
|
|
|
new Music("Freeze Raël", "Freeze Corleone", "https://intrld.com/wp-content/uploads/2020/08/freeze-corleone-la-menace-fanto%CC%82me.png"),
|
|
|
|
new Music("Freeze Raël", "Freeze Corleone", "https://intrld.com/wp-content/uploads/2020/08/freeze-corleone-la-menace-fanto%CC%82me.png"),
|
|
|
|
new Music("Blanka", "PNL", require("../assets/images/pnl.png"))
|
|
|
|
new Music("Blanka", "PNL", require("../assets/images/pnl.png")),
|
|
|
|
|
|
|
|
new Music("Kratos", "PNL", "https://upload.wikimedia.org/wikipedia/en/a/a0/PNL_-_Dans_la_l%C3%A9gende.png"),
|
|
|
|
]
|
|
|
|
]
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<View style={styles.body}>
|
|
|
|
<View style={styles.body}>
|
|
|
@ -37,6 +39,7 @@ export default function favoritePage() {
|
|
|
|
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
body: {
|
|
|
|
body: {
|
|
|
|
|
|
|
|
flex: 1,
|
|
|
|
backgroundColor: "#141414"
|
|
|
|
backgroundColor: "#141414"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
titleContainer: {
|
|
|
|
titleContainer: {
|
|
|
@ -54,7 +57,6 @@ const styles = StyleSheet.create({
|
|
|
|
color: '#787878',
|
|
|
|
color: '#787878',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
scroll: {
|
|
|
|
scroll: {
|
|
|
|
marginBottom: 120,
|
|
|
|
|
|
|
|
marginTop: -30
|
|
|
|
marginTop: -30
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|