-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.qml
More file actions
37 lines (30 loc) · 800 Bytes
/
Copy pathMain.qml
File metadata and controls
37 lines (30 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
ApplicationWindow {
visible: true
width: 1280
height: 720
minimumWidth: 1111
minimumHeight: 700
title: "СПО \"СПАД\""
StackView {
id: stackView
anchors.fill: parent
initialItem: HomePage { }
pushEnter: Transition {
NumberAnimation {
properties: "x"
duration: 100
from: stackView.width
to: 0
}
NumberAnimation {
properties: "opacity"
duration: 100
from: 0
to: 1
}
}
}
}