mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-05 18:20:33 -08:00
15 lines
352 B
QML
15 lines
352 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import "ext/" as Ext
|
|
|
|
Item {
|
|
width: 300
|
|
height: 500
|
|
objectName: "main"
|
|
|
|
Ext.Repl {}
|
|
|
|
FontLoader { id: fontIcons; source: "fonts/fontawesome-webfont.ttf" }
|
|
FontLoader { id: fontHack; source: "fonts/Hack-Regular.ttf" }
|
|
FontLoader { id: fontHackBold; source: "fonts/Hack-Bold.ttf" }
|
|
}
|