Skip to content

Instantly share code, notes, and snippets.

@extratone
Created March 22, 2024 03:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save extratone/7f18c05546ef6a28a6b468923eef7ada to your computer and use it in GitHub Desktop.
Save extratone/7f18c05546ef6a28a6b468923eef7ada to your computer and use it in GitHub Desktop.
One of tech's most powerful leaders has been saving up all day, just for you.
//
// TimCookStraightUpPissingAppleTV.swift
// Pee Pee Tim
//
// One of tech's most powerful leaders has been saving up all day, just for you.
// Copyright © Extratone Media. Zero rights reserved.
//
import SwiftUI
struct TimCookStraightUpPissingAppleTV: View {
var body: some View {
VStack(alignment: .leading, spacing: 10) {
VStack(alignment: .leading, spacing: 0) {
Text("tv+")
.font(.largeTitle.weight(.semibold))
Text("Tim Cook
Straight Up Pissing")
.kerning(-1.0)
.font(.largeTitle.weight(.semibold))
}
Text("One of tech's most powerful leaders has been saving up all day, just for you.")
.font(.headline.weight(.medium))
.foregroundColor(.white.opacity(0.75))
Text("Watch hinmb go.")
.font(.headline.weight(.bold))
}
.frame(width: 320, alignment: .leading)
.clipped()
.padding(64)
.background {
LinearGradient(gradient: Gradient(colors: [.black, Color(.displayP3, red: 15/255, green: 5/255, blue: 56/255)]), startPoint: .bottom, endPoint: .top)
.mask {
RoundedRectangle(cornerRadius: 24, style: .continuous)
}
}
.foregroundColor(.white)
}
}
struct TimCookStraightUpPissingAppleTV_Previews: PreviewProvider {
static var previews: some View {
TimCookStraightUpPissingAppleTV()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment