14 lines
217 B
QML
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
|
|
}
|
|
}
|