PageIndicatorContainer constructor

const PageIndicatorContainer({
  1. Key? key,
  2. required Widget child,
  3. required int length,
  4. EdgeInsets padding = const EdgeInsets.only(bottom: 10.0, top: 10.0),
  5. IndicatorAlign align = IndicatorAlign.bottom,
  6. Color indicatorColor = Colors.white,
  7. Color indicatorSelectorColor = Colors.grey,
  8. double indicatorSpace = 8.0,
  9. IndicatorShape shape = IndicatorShape.defaultCircle,
})

Implementation

const PageIndicatorContainer({
  Key? key,
  required this.child,
  required this.length,
  this.padding = const EdgeInsets.only(bottom: 10.0, top: 10.0),
  this.align = IndicatorAlign.bottom,
  this.indicatorColor = Colors.white,
  this.indicatorSelectorColor = Colors.grey,
  this.indicatorSpace = 8.0,
  this.shape = IndicatorShape.defaultCircle,
}) : super(key: key);