Thanks, but:
@Rangantha-B-V said in Custom TextField existing required property not initialized, but it is:
implicitWidth exists on Item and is read-only (computed internally based on content/layout hints).
I disagree. The doc does not write that the property is read-only. It says that "however some items have an inherent implicit size which cannot be overridden, for example, Image and Text", which I assume is the case of the TextInput, but is not really mentioned precisely in the doc...
As a counter-example to read-only, you can set an implicitWidth with a ComboBox and with a TextField.
The ComboBox can have a required on implicitWidth without any problems, which is not the case of TextField, why that ?
@Rangantha-B-V said in Custom TextField existing required property not initialized, but it is:
bind to width or implicitWidth internally
So it's read-only from the outside but editable within the object ? In this case, why could I set it from the outside by simply removing the required line ?