Skip to content

Instantly share code, notes, and snippets.

@slamdon
Created February 13, 2020 13:44
Show Gist options
  • Select an option

  • Save slamdon/f7f19dca22ce4cba3d61582668202d14 to your computer and use it in GitHub Desktop.

Select an option

Save slamdon/f7f19dca22ce4cba3d61582668202d14 to your computer and use it in GitHub Desktop.
Indicator
Widget _getIndicator() {
return Code4Indicator(
dotCount: this.widget.imagePaths.length,
currentIndex: currentIndex,
dotColor: Color.fromRGBO(255, 255, 255, 1),
dotSelectedColor: Color.fromRGBO(255, 255, 255, 0.3),
dotPadding: 12,
dotSize: 14,
onItemTap: (index) {
pageController.jumpToPage(index);
},
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment