Details
-
Task
-
Resolution: Unresolved
-
P2: Important
-
6.10
-
None
Description
Here is an example of something you may want to warn about but currently can't. A State should not have arbitrary child Items. Only a specific set of Items is allowed. It is currently impossible to detect that we have a State with illegal children using public API.
import QtQuick
Item {
State {
Item {
}
}
}