2021-04-16 16:36:24 +03:00
2021-04-16 16:38:22 +03:00
2020-09-23 08:41:26 +03:00
2021-04-18 17:24:12 +03:00
2021-04-16 16:38:22 +03:00
2021-04-17 16:01:58 +03:00
2020-04-27 19:00:06 +03:00
2021-04-16 16:36:24 +03:00
2020-05-11 19:09:17 +03:00

ViewSolutions

View solutions of qml for quasarapp projects

QML classes:

ImageView

This is animate image viewer

Example:
    ImageView {
        anchors.fill: parent
        soucre:  "qrc:/img/images/example.png"
        text: "exampele"
        anchors.margins: 100
        borderColor: "red"
    }

ViewPortPage

This is animate Delegate viewer for ListView

Example:
    ListView {
        id: viewPort
        property real globalPos: 0
        anchors.fill: parent
        delegate: Component {
            ViewPortPage {
                viewPortDelegatH: 500 // base size of content item
                scrollPos: viewPort.globalPos // due to qml limitations, this field will have to be tied to updating the location of the scroll
                source:  modelData
                viewground: root // this is plane to display the main background
                title: "Test ViewPortPage"
                text: "Test ViewPortPage. General text and <i>html code</i>"
            }
        }

        ScrollBar.vertical: ScrollBar {
            onPositionChanged: {
                viewPort.globalPos = position
            }
        }


        model: [
            "qrc:/img/res/LOGO.png",
            "qrc:/img/res/LOGO-GREAN.png",
        ]
    }
Description
No description provided
Readme GPL-3.0 2.1 MiB
Languages
C++ 50.4%
QML 45.8%
CMake 2.9%
C 0.8%