Avatar picker (for later)

This commit is contained in:
Donatas Kirda 2023-12-13 18:02:02 +02:00
parent fff9fb90fa
commit ac58009119
Signed by: bloodwiing
GPG Key ID: 63020D8D3F4A164F

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import java.net.URL?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.FlowPane?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.layout.VBox?>
<VBox alignment="CENTER" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" styleClass="gradient" xmlns="http://javafx.com/javafx/20.0.1" xmlns:fx="http://javafx.com/fxml/1">
<children>
<Label style="-fx-font-size: 20;" styleClass="axis" text="Choose an Avatar" />
<FlowPane prefHeight="200.0" prefWidth="200.0">
<children>
<VBox prefHeight="200.0" prefWidth="100.0">
<children>
<Pane maxHeight="64.0" maxWidth="64.0" minHeight="64.0" minWidth="64.0" />
</children>
</VBox>
</children>
</FlowPane>
</children>
<stylesheets>
<URL value="@../styling.css" />
<URL value="@../custom.css" />
</stylesheets>
</VBox>