PageViewWithIndicators constructor

const PageViewWithIndicators({
  1. required List<Widget> children,
  2. Color dotColor = Colors.white,
  3. IndicatorScreenType type = IndicatorScreenType.dots,
  4. PageController? pageController,
  5. required dynamic onPageChanged(
    1. int
    ),
  6. Key? key,
})

Implementation

const PageViewWithIndicators(
    {required this.children,
    this.dotColor = Colors.white,
    this.type = IndicatorScreenType.dots,
    this.pageController,
    required this.onPageChanged,
    Key? key})
    : super(key: key);