disabledComponent property
PositionComponent?
get
disabledComponent
Gets the visual component for the disabled interaction state.
Implementation
PositionComponent? get disabledComponent => _disabledComponent;
set
disabledComponent
(PositionComponent? component)
Sets the visual component for the disabled interaction state and rebuilds the visual state.
Implementation
set disabledComponent(PositionComponent? component) {
_disabledComponent = component;
_rebuild();
}