QML Material Implementation
-
Hi,
in the
Textfield.qmlforMaterialwe can seeFloatingPlaceholderText { id: placeholder width: control.width - (control.leftPadding + control.rightPadding) text: control.placeholderText font: control.font color: control.placeholderTextColor elide: Text.ElideRight renderType: control.renderType filled: control.Material.containerStyle === Material.Filled verticalPadding: control.Material.textFieldVerticalPadding controlHasActiveFocus: control.activeFocus controlHasText: control.length > 0 controlImplicitBackgroundHeight: control.implicitBackgroundHeight controlHeight: control.height leftPadding: control.leftPadding floatingLeftPadding: control.Material.textFieldHorizontalPadding }Where is this
FloatingPlaceholderTextdefined? I can not find any .qml file or any c++ implementation of that. -
R Redman has marked this topic as solved