Skip to content

Instantly share code, notes, and snippets.

View scihant's full-sized avatar

Salih Cihan Tek scihant

  • Lyrebird Studio
  • Istanbul, Turkey
View GitHub Profile
@scihant
scihant / UIViewControllerPreview.swift
Last active June 16, 2022 15:17 — forked from mattt/UIViewControllerPreview.swift
Generic structures to host previews of UIView and UIViewController subclasses.
import UIKit
import SwiftUI
struct PreviewVC: PreviewProvider {
static var previews: some View {
UIViewControllerPreview {
let vcToPreview = TestVC()
return vcToPreview
}.edgesIgnoringSafeArea(.all)
}