translucent property

bool get translucent

Whether this widget is invisible to its parent during hit testing.

Regardless of whether this render object is invisible to its parent during hit testing, it will still consume space during layout and be visible during painting.

Implementation

bool get translucent => _translucent;
set translucent (bool value)

Implementation

set translucent(bool value) {
  if (value == _translucent) return;
  _translucent = value;
}