2020-04-12 19:30:38 +03:00
|
|
|
//#
|
2021-02-16 19:14:57 +03:00
|
|
|
//# Copyright (C) 2018-2021 Yankovich Andrei (EndrII).
|
2020-04-12 19:30:38 +03:00
|
|
|
//# Distributed under the lgplv3 software license, see the accompanying
|
|
|
|
//# Everyone is permitted to copy and distribute verbatim copies
|
|
|
|
//# of this license document, but changing it is not allowed.
|
|
|
|
//#
|
2020-04-05 22:35:23 +03:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Window 2.12
|
|
|
|
import QtQuick.Controls 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
|
|
|
import LoginViewModule 1.0
|
|
|
|
import QtQuick.Dialogs 1.3
|
|
|
|
|
|
|
|
Window {
|
|
|
|
|
|
|
|
height: 600
|
|
|
|
width: 400
|
2020-04-12 19:27:00 +03:00
|
|
|
|
|
|
|
minimumHeight: 400
|
|
|
|
minimumWidth: 200
|
|
|
|
|
2020-04-05 22:35:23 +03:00
|
|
|
visible: true
|
|
|
|
LoginView {
|
|
|
|
lognViewModel: exampleLogin
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
2020-04-12 19:27:00 +03:00
|
|
|
|
2020-04-05 22:35:23 +03:00
|
|
|
title: qsTr("Example of LoginView")
|
|
|
|
}
|