14 lines
506 B
XML
14 lines
506 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
<VBox xmlns="http://javafx.com/javafx"
|
|
xmlns:fx="http://javafx.com/fxml"
|
|
fx:controller="sbu.javafx.PlaylistController"
|
|
spacing="10" alignment="CENTER" style="-fx-padding: 20;">
|
|
<Label text="Your Playlist" style="-fx-font-size: 30px; -fx-font-weight: bold;"/>
|
|
<VBox fx:id="songContainer" spacing="5" alignment="CENTER"/>
|
|
</VBox>
|
|
|
|
<!--future feature: remove from playlist--> |