UIKit code that is fun to write.
import UIKit
import SwiftUIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
Navigate.shared.configure(controller: navigationController)
.set(title: "Hello SwiftUIKit")
.setRight(barButton: BarButton {
Button({
print("Tapped the barbutton")
}) {
Label("Button 0")
}
})
view.embed {
SafeAreaView {
Table(defaultCellHeight: 60) {
[
Button("Say Hello") {
print("Hello World!")
},
HStack(withSpacing: 8) {
[
Label("Name"),
Divider(.vertical),
Spacer(),
Field(value: "SwiftUIKit",
placeholder: "Some Name",
keyboardType: .default)
.inputHandler { print("New Name: \($0)") }
]
},
Label.callout("This is some callout text!"),
ZStack {
[
Image(.blue)
.frame(height: 60, width: 60)
.offset(x: 100)
]
},
NavButton(destination: UIViewController {
UIView(backgroundColor: .white) {
LoadingImage(URL(string: "https://cdn11.bigcommerce.com/s-oe2q4reh/images/stencil/2048x2048/products/832/1401/Beige_Pekingese_Puppy__21677.1568609759.jpg")!)
.contentMode(.scaleAspectFit)
}
}, style: .push) {
Label("Go see a puppy")
},
Button("Show an Alert") {
Navigate.shared.alert(title: "Hello this is an Alert!",
message: "Just a test...",
secondsToPersist: 3)
},
Button("Show an Alert w/ cancel") {
Navigate.shared.alert(title: "Hello World",
message: "This is an alert",
withActions: [.cancel],
secondsToPersist: 3)
},
Button("Show a Toast Message") {
Navigate.shared.toast(style: .error, pinToTop: true, secondsToPersist: 4) {
Label("This is a test error message!")
}
}
]
}
}
}
}
}
This project is a oneleif active project.
Click on the link below to join the Discord server.
You will start with limited permissions, in a text channel that only moderators will see.
To get full access: read the rules, make an introduction in #introductions, and add an appropriate username.
When you're done with the above, shoot a message to the #start channel to let us know, and we will give you full access.
Feel free to email us at: [email protected]