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
import SwiftUI | |
import iColor | |
struct ContentView: View { | |
var body: some View { | |
Color("#fafafa") | |
} | |
} |
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
import SwiftUI | |
import iColor | |
struct ContentView: View { | |
var body: some View { | |
Color(red: 250, green: 250, blue: 250) | |
} | |
} |
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
import SwiftUI | |
import iColor | |
struct ContentView: View { | |
var body: some View { | |
Color.neonBlue | |
Color.darkGray | |
Color.lightGreen | |
} | |
} |
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
import SwiftUI | |
import iPhoneNumberTextField | |
struct ContentView: View { | |
@State var text: String = "" | |
@State var isEditing: Bool = false | |
var body: some View { | |
iPhoneNumberTextField("Phone", text: $text, isEditing: $isEditing) | |
} |
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
import SwiftUI | |
import iPages | |
struct ContentView: View { | |
@State var currentPage: Int = 0 | |
var body: some View { | |
iPages(currentPage: $currentPage) { | |
Color.red | |
Color.blue |
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
iPages(currentPage: $currentPage) { | |
Text("Kanye") | |
Text("Omari") | |
Text("West")] | |
} | |
.hideDots(false) | |
.wrapsInfinitely(true) | |
.dotsTintColors(currentPage: Color.pink:, otherPages: Color.purple) | |
.dotsBackgroundStyle(style: .prominent) |
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
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 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() |
OlderNewer