packageScrollLeft method

void packageScrollLeft(
  1. BuildContext context
)

Implementation

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