ArrowPageIndicator constructor
const
ArrowPageIndicator({
- Key? key,
- required PageController pageController,
- required ValueNotifier<
int> currentPageNotifier, - required int itemCount,
- required Widget child,
- Widget? rightIcon,
- Widget? leftIcon,
- Color? iconColor,
- EdgeInsetsGeometry iconPadding = defaultPadding,
- int duration = defaultDuration,
- Curve curve = defaultCurve,
- bool isJump = false,
- bool isInside = false,
- double iconSize = defaultIconSize,
- String? tooltipLeft,
- String? tooltipRight,
Implementation
const ArrowPageIndicator({
Key? key,
required this.pageController,
required this.currentPageNotifier,
required this.itemCount,
required this.child,
this.rightIcon,
this.leftIcon,
this.iconColor,
this.iconPadding = defaultPadding,
this.duration = defaultDuration,
this.curve = defaultCurve,
this.isJump = false,
this.isInside = false,
this.iconSize = defaultIconSize,
this.tooltipLeft,
this.tooltipRight,
}) : super(key: key);