Warning, /education/kstars/kstars/kstarslite/qml/dialogs/helpers/DetailsItem.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 import QtQuick.Controls 2.0
0006 import "../../modules"
0007 
0008 Column {
0009     property string label
0010     property string value
0011     spacing: 5
0012     visible: value.length
0013 
0014     width: parent.width
0015 
0016     KSLabel {
0017         text: label
0018         font.pointSize: 13
0019     }
0020 
0021     Rectangle {
0022         width: parent.width
0023         height: 1
0024         color: "grey"
0025     }
0026 
0027     KSLabel {
0028         font.pointSize: 11
0029         text: value
0030     }
0031 }