Skip to content

Instantly share code, notes, and snippets.

View rusik's full-sized avatar
🏄‍♂️

Ruslan Kavetsky rusik

🏄‍♂️
View GitHub Profile
@rusik
rusik / PizzaUI.swift
Last active October 22, 2022 17:39
Implementation of half-pizza UI from Dodo Pizza on SwiftUI. Original UIKit implementation is here → https://habr.com/ru/company/dododev/blog/452876/
import SwiftUI
import Foundation
struct ContentView: View {
var body: some View {
HStack(spacing: 4) {
PizzaView(color: .blue, orientation: .left)
PizzaView(color: .red, orientation: .right)
}
}