dividerWidth property

double get dividerWidth

Implementation

double get dividerWidth {
  var width = _dividerWidth?.get() ??
      (System().useragent == 'desktop' || isNullOrEmpty(System().useragent)
          ? 6.0
          : 12.0);
  if (width % 2 != 0) width = width + 1;
  return width;
}
set dividerWidth (dynamic v)

Implementation

set dividerWidth(dynamic v) {
  if (_dividerWidth != null) {
    _dividerWidth!.set(v);
  } else if (v != null) {
    _dividerWidth = DoubleObservable(Binding.toKey(id, 'dividerwidth'), v,
        scope: scope, listener: onPropertyChange);
  }
}