unselectedLabelStyle property

TextStyle? get unselectedLabelStyle

The text style of unselected tab labels.

Implementation

TextStyle? get unselectedLabelStyle => _unselectedLabelStyle;
set unselectedLabelStyle (TextStyle? v)

Sets the unselected label style and invalidates the paint cache.

Implementation

set unselectedLabelStyle(TextStyle? v) {
  if (_unselectedLabelStyle == v) return;
  _unselectedLabelStyle = v;
  _invalidateCache();
  markNeedsPaint();
}