Skip to content

Instantly share code, notes, and snippets.

View joeyabanks's full-sized avatar
🐢

Joey Banks joeyabanks

🐢
View GitHub Profile
import SwiftUI
import PlaygroundSupport
struct Screen: View {
var body: some View {
VStack {
// status bar
HStack {
Text("Verizon")
.font(.body)
import SwiftUI
import PlaygroundSupport
struct ClickWheel: View {
var body: some View {
ZStack {
Circle()
.fill(LinearGradient(
gradient: Gradient(stops: [
.init(color: Color(#colorLiteral(red: 0.21568627655506134, green: 0.21568627655506134, blue: 0.21568627655506134, alpha: 1)), location: 0),
import SwiftUI
import PlaygroundSupport
struct divider: View {
var body: some View {
VStack {
Rectangle()
.frame(height: 1)
.opacity(0.1)
}