Warning, /education/gcompris/src/activities/numbers-odd-even/resource/Tutorial3.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris - Tutorial3.qml
0002  *
0003  * SPDX-FileCopyrightText: 2019 Deepak Kumar <deepakdk2431@gmail.com>
0004  *
0005  * Authors:
0006  *   Deepak Kumar <deepakdk2431@gmail.com>
0007  *
0008  *   SPDX-License-Identifier: GPL-3.0-or-later
0009  */
0010 import QtQuick 2.12
0011 import GCompris 1.0
0012 
0013 import "../../../core"
0014 
0015 Rectangle {
0016     id: tutorialRectangle
0017     anchors.fill: parent
0018     color: "#80FFFFFF"
0019 
0020     GCText {
0021         id: odd
0022         text: qsTr("For example: 15, 19, 51, 65, 103, 119, 169, 185, 505, 533, 701, 799, 845, 897, 1001. All of these numbers are odd numbers as they do not leave a remainder of 0 when divided by 2.")
0023         fontSizeMode: Text.Fit
0024         fontSize: mediumSize
0025         anchors.left: tutorialRectangle.left
0026         anchors.leftMargin: parent.height * 0.01
0027         color: "black"
0028         horizontalAlignment: Text.AlignLeft
0029         width: parent.width
0030         height: parent.height
0031         wrapMode: Text.WordWrap
0032         z: 2
0033     }
0034 }