Last active
October 22, 2020 00:48
-
-
Save blsage/1c127ca4accd25945b1494f340c41086 to your computer and use it in GitHub Desktop.
iPages simple example
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
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