packageScrollRight method

void packageScrollRight(
  1. BuildContext context
)

Implementation

void packageScrollRight(BuildContext context) {
  packageScrollController.animateTo(
    packageScrollController.position.pixels + membershipCardWidth,
    duration: const Duration(milliseconds: 300),
    curve: Curves.easeInOut,
  );
}