pages property

IndexedStack get pages

Implementation

IndexedStack get pages => IndexedStack(
    index: _currentIndex,
    children: tabs
        .mapIndexed((tab, index) => Offstage(
              offstage: _currentTab != tab,
              child: TabNavigator(
                navigatorKey: navigatorKeys[index],
                tabItem: tab,
              ),
            ))
        .toList());