labelStyle property
TextStyle?
get
labelStyle
The text style of the selected tab label.
Implementation
TextStyle? get labelStyle => _labelStyle;
set
labelStyle
(TextStyle? v)
Sets the selected label style and invalidates the paint cache.
Implementation
set labelStyle(TextStyle? v) {
_labelStyle = v;
_invalidateCache();
}