showHintOnlyOnFocus property

bool get showHintOnlyOnFocus

Implementation

bool get showHintOnlyOnFocus => _showHintOnlyOnFocus;
  1. @Input()
set showHintOnlyOnFocus (bool value)

Whether or not the hint text will be displayed when the input is not focused.

Defaults to false.

Implementation

@Input()
set showHintOnlyOnFocus(bool value) {
  _showHintOnlyOnFocus = value;
  updateBottomPanelState();
}