Created
January 24, 2020 15:58
-
-
Save FedeRotoli/d0c6aea8051de94548be910ff260966f to your computer and use it in GitHub Desktop.
This file contains 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
struct ContentView: View { | |
@State private var currentPage = 0 | |
var body: some View { | |
//Pager Manager | |
VStack{ | |
PagerManager(pageCount: 2, currentIndex: $currentPage) { | |
Text("First page") | |
Text("Second page") | |
} | |
Spacer() | |
//Page Control | |
HStack{ | |
Circle() | |
.frame(width: 8, height: 8) | |
.foregroundColor(currentPage==1 ? Color.gray:Color.white) | |
Circle() | |
.frame(width: 8, height: 8) | |
.foregroundColor(currentPage==1 ? Color.white:Color.gray) | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment