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 iColor | |
struct ContentView: View { | |
var body: some View { | |
Rectangle() | |
.fill(Color.neonBlue) | |
} | |
} |
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 | |
import iGraphics | |
struct ContentView: View { | |
@State var currentPage: Int = 0 | |
var body: some View { | |
iPages([iGraphicsView(.first), | |
iGraphicsView(.second)], |
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 iDummyCursor | |
struct ContentView: View { | |
var body: some View { | |
iDummyCursor() | |
.foregroundColor(Color.purple) | |
.fontSize(24) | |
} | |
} |
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 iGraphics | |
struct ContentView: View { | |
var body: some View { | |
ScrollView(.horizontal) { | |
HStack { | |
iGraphicsView(.first) | |
iGraphicsView(.second) | |
iGraphicsView(.third) |
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 iGraphics | |
struct ContentView: View { | |
var body: some View { | |
ScrollView { | |
iGraphicsBox() | |
.stack(10) | |
} | |
} |
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
iTextField("Placeholder", text: $text, isEditing: $isEditing) | |
.accentColor(.purple) | |
.fontFromUIFont(UIFont(name: "Avenir", size: 40)) | |
.keyboardType(.URL) | |
.returnKeyType(.done) | |
.disableAutocorrection(true) | |
.autocapitalization(.none) | |
.padding() |
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 iTextField | |
struct ContentView: View { | |
@State var text: String = "" | |
@State var isEditing: Bool = false | |
var body: some View { | |
iTextField("Placeholder", text: $text, isEditing: $isEditing) | |
} |
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
iPages(currentPage: $currentPage) { | |
Text("Kanye") | |
Text("Omari") | |
Text("West")] | |
} | |
.hideDots(false) | |
.wrapsInfinitely(true) | |
.dotsTintColors(currentPage: Color.pink:, otherPages: Color.purple) | |
.dotsBackgroundStyle(style: .prominent) |