PageViewWithIndicators constructor
const
PageViewWithIndicators({
- required List<
Widget> children, - Color dotColor = Colors.white,
- IndicatorScreenType type = IndicatorScreenType.dots,
- PageController? pageController,
- required dynamic onPageChanged(),
- 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);