activeTabIndex property

int get activeTabIndex

Implementation

int get activeTabIndex => _activeTabIndex;
  1. @Input()
set activeTabIndex (int value)

Index of the active panel, 0-based.

Default is 0.

Implementation

@Input()
set activeTabIndex(int value) {
  if (_activeTabIndex != value) {
    _activeTabIndex = value;
    _updateTabIndicatorTransform();
    _changeDetector.markForCheck();
  }
}