showHintOnlyOnFocus property
bool
get
showHintOnlyOnFocus
Implementation
bool get showHintOnlyOnFocus => _showHintOnlyOnFocus;
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();
}