adjacentCardScale static method

double adjacentCardScale({
  1. double activeScale = 1.0,
})

Scale factor for adjacent (non-active) cards in the carousel.

Implementation

static double adjacentCardScale({double activeScale = 1.0}) {
  return activeScale * 0.88;
}