- 
    Task 
- 
    Resolution: Unresolved
- 
    P2: Important 
- 
    None
- 
    None
The bridge_type() API should accept a new `default_property` keyword argument which adds the default property class info to the metaobject.
eg: bridge_type(Box, uri="backend", version="1.0", default_property="child")
QML code:
Box {
id: testBox
// Widget will be assigned to child property
Widget 
}
 
Python class:
class Box:
"""Container with a single child widget"""
def_init_(self):
self._child=None
@property
defchild(self) -> Widget:
returnself._child
@child.setter
defchild(self, value: Widget) -> None:
self._child=value
defhas_child(self) -> bool:
returnself._childisnotNone
 
- is required for
- 
                     QTBUG-134668
        As a dev, I need a simple way to add a Qt Quick UI to my Python code QTBUG-134668
        As a dev, I need a simple way to add a Qt Quick UI to my Python code-         
- In Progress
 
-         
| For Gerrit Dashboard: QTBUG-141498 | ||||||
|---|---|---|---|---|---|---|
| # | Subject | Branch | Project | Status | CR | V | 
| 685863,3 | Python: Default Property Support | dev | qt/tqtc-qtbridges | Status: NEW | 0 | 0 |