Row component: Invalid property name "leftPadding"
Solved
QML and Qt Quick
-
The documentation clearly states
Row
has aleftPadding
for QT 5.6+.
https://doc.qt.io/qt-5/qml-qtquick-row.html#leftPadding-propMy PySide2 is version
'5.15.2'
.However I get this problem:
-
Which Qt Quick version are you importing in your QML file?
My guess is that you should replace
import QtQuick 2.0
byimport QtQuick 2.15
. -
May be trivial qn. It should work. Seen it working as well. Did you run the program & see if this padding is working ?
-
@dheerendra doesn't work, I get weird output, the component doesn't load at all. Everything else bugs
-
Which Qt Quick version are you importing in your QML file?
My guess is that you should replace
import QtQuick 2.0
byimport QtQuick 2.15
.