This commit is contained in:
2026-06-15 01:15:24 +03:30
parent fa5f8ab267
commit fdfb2a06eb
10 changed files with 422 additions and 11 deletions
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.control.Label?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Separator?>
<VBox xmlns:fx="http://javafx.com/fxml" alignment="CENTER" spacing="30" fx:controller="sbu.javafx.PlaylistController">
<padding><Insets top="30" right="30" left="30" bottom="20"/></padding>
<VBox spacing="5">
<Label text="My play list" styleClass="title"/>
<Separator/>
<Label fx:id="PL1" />
<Label fx:id="PL2" />
<Label fx:id="PL3" />
</VBox>
</VBox>