add Feathers UI bootstrap

This commit is contained in:
2025-11-14 14:15:52 +01:00
parent b749c5b56a
commit 0ea49051d0
4 changed files with 38 additions and 0 deletions
Vendored
BIN
View File
Binary file not shown.
+9
View File
@@ -0,0 +1,9 @@
<svg id="feathersui-icon" xmlns="http://www.w3.org/2000/svg" width="1024" height="1024">
<rect class="cls-1" width="1024" height="1024" rx="170" ry="170" style="fill: #ff8b26;"/>
<circle class="cls-2" cx="512" cy="512" r="444.156" style="fill: #f2eae4;"/>
<g id="Wings">
<path id="Rectangle_3_copy_3" data-name="Rectangle 3 copy 3" class="cls-3" d="M532.228,620.778H762.353v114.9H532.228v-114.9Z" style="fill: #ffc28c;fill-rule: evenodd;"/>
<path id="Rectangle_3_copy_4" data-name="Rectangle 3 copy 4" class="cls-4" d="M379.028,486.553H762.353V601.6H379.028V486.553Z" style="fill: #ffa759;fill-rule: evenodd;"/>
<path id="Rectangle_3_copy_5" data-name="Rectangle 3 copy 5" class="cls-5" d="M225.678,352.353H762.353V467.4H225.678V352.353Z" style="fill: #ff8b26;fill-rule: evenodd;"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 815 B

+17
View File
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<project>
<meta title="LPTCManager2026" package="com.example.LPTCManager2026" version="1.0.0" company="My Company"/>
<app main="LPTCManager2026"/>
<window allow-high-dpi="true"/>
<window fps="60"/>
<window fps="0" if="html5"/>
<source path="src"/>
<haxelib name="openfl"/>
<haxelib name="actuate"/>
<haxelib name="feathersui"/>
<icon path="assets/icons/icon.svg"/>
</project>
+12
View File
@@ -0,0 +1,12 @@
import feathers.controls.Application;
import feathers.controls.Label;
class LPTCManager2026 extends Application {
public function new() {
super();
var label = new Label();
label.text = "Hello World";
addChild(label);
}
}