Deltachat/qml/main.qml
2025-03-15 10:17:05 +07:00

14 lines
217 B
QML

import QtQuick 2.15
import QtQuick.Controls 2.0
import "./chat"
ApplicationWindow {
id:main
width: 1600
height: 800
visible: true
title: "lmao"
ChatList {
anchors.fill: parent
}
}