Template how to use with SplitView ?
Solved
QML and Qt Quick
-
I try make this SplitView.qml
import QtQuick import QtQuick.Templates as T T.SplitView { }
when i use it, the splitview has one item is normal ,
This is normal.SplitView { anchors.fill: parent Rectangle { color:"red" } }
but two or more items the program will be crashed.
SplitView { anchors.fill: parent Rectangle { color:"red" } Rectangle { color:"red" } }
-
-
Hi,
Since you marked the topic as solved, how did you fix the issue ?