unselectedLabelColor property
Color
get
unselectedLabelColor
The text color of unselected tab labels.
Implementation
Color get unselectedLabelColor => _unselectedLabelColor;
set
unselectedLabelColor
(Color v)
Sets the unselected label color and invalidates the paint cache.
Implementation
set unselectedLabelColor(Color v) {
if (_unselectedLabelColor == v) return;
_unselectedLabelColor = v;
_invalidateCache();
markNeedsPaint();
}