Skip to content

QML and Qt Quick

Looking for The Bling Thing(tm)? Post here!
20.0k Topics 77.4k Posts
  • Qt6.7 (QML) breaks Dialog rotation.

    Unsolved
    2
    0 Votes
    2 Posts
    274 Views
    C
    Hi ! Same issue for me after upgrading from 6.4.2 to 6.8.1. In my case, I'm setting orientation in "main.cpp".
  • material theme custom effect

    Unsolved
    1
    0 Votes
    1 Posts
    776 Views
    No one has replied
  • 0 Votes
    3 Posts
    2k Views
    SavizS
    I did some more research and it seems this is the way to do it: // This code must be placed directly in the ListView WheelHandler { acceptedDevices: PointerDevice.Mouse property int speed: 2 property Flickable flickable: parent.parent onWheel: (event) => { let scroll_flick = event.angleDelta.y * speed; if(flickable.verticalOvershoot != 0.0 || (scroll_flick>0 && (flickable.verticalVelocity<=0)) || (scroll_flick<0 && (flickable.verticalVelocity>=0))) { flickable.flick(0, (scroll_flick - flickable.verticalVelocity)); return; } else { flickable.cancelFlick(); return; } } } Hope this helps someone.
  • Qt android reports generator

    Unsolved
    2
    0 Votes
    2 Posts
    353 Views
    jsulmJ
    @Victor-Manuel said in Qt android reports generator: but their libraries are not compatible with armelf_linux_eabi You can build them by yourself for armelf_linux_eabi
  • how to off ShaderEffectSource animation qt

    Unsolved
    1
    0 Votes
    1 Posts
    106 Views
    No one has replied
  • Onscreen keyboard scrolling w/ TextField

    Solved
    2
    0 Votes
    2 Posts
    355 Views
    S
    Nevermind this behavior already seems to happen
  • Creating a new Qt Quick Application with cmake already has errors

    Solved
    4
    0 Votes
    4 Posts
    578 Views
    dheerendraD
    @pillexyz_z. Good news. Move the ticket to solved as well.
  • Moving data in QML Listview using QSortFilterProxyModel

    Unsolved
    1
    0 Votes
    1 Posts
    126 Views
    No one has replied
  • How to create a FlickablePage ?

    Unsolved
    1
    0 Votes
    1 Posts
    116 Views
    No one has replied
  • Template how to use with SplitView ?

    Solved
    3
    0 Votes
    3 Posts
    248 Views
    L
    @SGaist Using import QtQuick.Controls.Material auto in qmldir, I found that there is no need to use template for SplitView.
  • how to transferred QLineSeries from c++ to qml

    Unsolved
    1
    0 Votes
    1 Posts
    131 Views
    No one has replied
  • QML Automotive Cluster Interface

    Unsolved
    8
    0 Votes
    8 Posts
    616 Views
    T
    Hi @crimson1023 I have leaved a comment with the new updated project you can see that in the link. My problem now is that I can't rotate the dials correctly.. Also thank you @JoeCFD but I don't understand how to set the connection between my C++ class and my QML code. I must use the connections but I can't write the code properly
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    72 Views
    No one has replied
  • ShaderEffect Dependencies

    Unsolved
    1
    0 Votes
    1 Posts
    102 Views
    No one has replied
  • Why can't only the customed property "kind" one be allocated data correctly?

    Solved
    6
    0 Votes
    6 Posts
    435 Views
    M
    @dheerendra Amazing🥳!It works,but why could not it run correctly before?I think thery are similar,just a little different.Is the problem on the order of the property?🧐
  • QML QQuickItem: Binding loop detected for property "y" - false positive?

    Unsolved
    2
    0 Votes
    2 Posts
    257 Views
    N
    Is is also odd that the binding loop detector does not complain about the line above where is it claiming a binding loop which ostensibly appears to be binding in a similar way: x: control.background.x + control.background.width / 2 - width / 2 Correction if I reorder these two lines I do get a binding loop warning for x: control.background.x + control.background.width / 2 - width / 2 but not for y: control.background.y + control.background.height / 2 - height / 2
  • ZoomAndDragable QML

    Unsolved
    1
    0 Votes
    1 Posts
    109 Views
    No one has replied
  • QmlLint

    Solved
    3
    0 Votes
    3 Posts
    334 Views
    R
    @kkoehne Absolute legend
  • Qt6.7.0 breaks Android app

    Solved
    2
    1 Votes
    2 Posts
    283 Views
    M
    Fixed in 6.7.3
  • This topic is deleted!

    Unsolved
    4
    0 Votes
    4 Posts
    31 Views