Andrei Yankovich 4017e6dbb3
All checks were successful
buildbot/DocsGenerator Build finished.
buildbot/LinuxCMakeBuilderQt6 Build finished.
Merge pull request #8 from QuasarApp/productionsGame
Added new models storage class.
2025-03-07 09:53:25 +01:00
2025-02-17 13:48:52 +01:00
2025-02-17 13:48:52 +01:00
2025-02-21 11:55:57 +01:00
2020-09-23 08:41:26 +03:00
2021-04-18 17:24:12 +03:00
2025-02-17 13:48:52 +01: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
2021-06-08 17:15:38 +03:00

ViewSolutions

View solutions of qml for quasarapp projects

QML classes:

ImageView

This is animate image viewer

Example:
import ViewSolutionsModule 1.0

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:
import ViewSolutionsModule 1.0

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%