Skip to content

Instantly share code, notes, and snippets.

@blsage
Last active October 22, 2020 00:48
Show Gist options
  • Save blsage/1c127ca4accd25945b1494f340c41086 to your computer and use it in GitHub Desktop.
Save blsage/1c127ca4accd25945b1494f340c41086 to your computer and use it in GitHub Desktop.
iPages simple example
import SwiftUI
import iPages
struct ContentView: View {
@State var currentPage: Int = 0
var body: some View {
iPages(currentPage: $currentPage) {
Color.red
Color.blue
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment