Warning, /education/kstars/kstars/kstarslite/qml/modules/tutorial/TutorialStep4.qml is written in an unsupported language. File is not indexed.

0001 // SPDX-FileCopyrightText: 2016 Artem Fedoskin <afedoskin3@gmail.com>
0002 // SPDX-License-Identifier: GPL-2.0-or-later
0003 
0004 import QtQuick 2.7
0005 
0006 import QtQuick.Controls 2.0
0007 import QtQuick.Controls.Material 2.0
0008 import QtQuick.Controls.Universal 2.0
0009 
0010 import QtQuick.Window 2.2 as Window
0011 import QtQuick.Layouts 1.1
0012 
0013 ColumnLayout {
0014     visible: step4
0015     spacing: 10
0016     anchors {
0017         left: parent.left
0018         right: parent.right
0019     }
0020 
0021     TutorialPane {
0022         anchors.horizontalCenter: parent.horizontalCenter
0023 
0024         contentWidth: parent.width * 0.75
0025         title: xi18n("Bottom Menu")
0026         description: xi18n("By tapping on this arrow you can access bottom menu from which you can set time and start time simulation")
0027 
0028         onNextClicked: {
0029             step4 = false
0030             step5 = true
0031         }
0032     }
0033 
0034     Image {
0035         source: "../../images/tutorial-arrow-vertical.png"
0036         anchors.horizontalCenter: parent.horizontalCenter
0037     }
0038 }