Custom QML Label Shape
Unsolved
QML and Qt Quick
-
I want to look my label as Below Image: There will one row layout which will contain 2 Label (Hello & Bye)
-
@Kaushik_19
hi and welcome,
so out of the box, it is not possible what you want to do. Your Item's will always be Rectangles no matter what, but you can draw your own custom border and overlap them somewhat. That way you will get the desired effect.You could do that for example via a Canvas:
https://doc.qt.io/qt-5/qml-qtquick-canvas.html -
Thanks @J-Hilk for reply. I ll try Canvas Method and revert back