Created
February 13, 2020 13:44
-
-
Save slamdon/f7f19dca22ce4cba3d61582668202d14 to your computer and use it in GitHub Desktop.
Indicator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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