This commit is contained in:
2026-06-07 21:23:47 +03:30
parent fa5f8ab267
commit 97a190a7ba
30 changed files with 683 additions and 32 deletions
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<BorderPane xmlns="http://javafx.com/javafx/21"
xmlns:fx="http://javafx.com/fxml/1"
fx:controller="sbu.javafx.PlaylistController"
stylesheets="@spotify.css">
<top>
<HBox styleClass="header" spacing="10" alignment="CENTER_LEFT">
<Button text="← Back" styleClass="btn-ghost" onAction="#goBack"/>
<Label text="Playlist" styleClass="h1"/>
</HBox>
</top>
<center>
<VBox spacing="12" style="-fx-padding: 18;">
<ListView fx:id="playlistListView" VBox.vgrow="ALWAYS"/>
<HBox alignment="CENTER_RIGHT">
<Button text="Remove Selected" onAction="#removeSelected"/>
</HBox>
</VBox>
</center>
</BorderPane>