mirror of
https://github.com/PancakeTAS/lsfg-vk.git
synced 2026-05-08 18:21:40 +00:00
17 lines
247 B
QML
17 lines
247 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
RowLayout {
|
|
id: root
|
|
spacing: 4
|
|
|
|
TextField {
|
|
Layout.fillWidth: true;
|
|
Layout.maximumWidth: 450;
|
|
}
|
|
|
|
Button {
|
|
icon.name: "folder-open"
|
|
}
|
|
}
|