buildNextButton method

Widget buildNextButton()

Implementation

Widget buildNextButton() {
  return TextButton(
    key: nextButtonKey,
    onPressed: () {
      onNextPress?.call();
      if (!isAnimating()) {
        tabController.animateTo(tabController.index + 1, curve: curveScroll);
      }
    },
    style: nextButtonStyle,
    child: renderNextBtn,
  );
}