Files
HW-07-JavaFX/src/main/resources/sbu/javafx/playlist.fxml
T
2026-05-28 00:00:28 +03:30

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-->