BEMCheckBox icon indicating copy to clipboard operation
BEMCheckBox copied to clipboard

Disabled state

Open dmfs opened this issue 6 years ago • 1 comments

Sometimes it's useful to disable a check box not allowing further changes until it's enabled again.

dmfs avatar Jan 16 '18 09:01 dmfs

Agreed. I usually do this for all kinds of controls w/

_control.userInteractionEnabled = <Predicate>;
_control.alpha = _control.userInteractionEnabled ? 1.0 : 0.5;

Native handling of a disabled state would be nice for the BEMCheckBox.

mickeyl avatar Mar 29 '18 09:03 mickeyl