Skip to content

Instantly share code, notes, and snippets.

View demolaf's full-sized avatar
🎯
Focusing

Ademola Fadumo demolaf

🎯
Focusing
  • Nigeria
View GitHub Profile
import UIKit
import SwiftUI
struct MyView: View {
@State var number: Int = .zero
var body: some View {
MyViewController.SwiftUIView(number: $number)
}
}
@miguelfermin
miguelfermin / PageViewController.swift
Created May 8, 2017 10:05
Demonstrates how to add a UIPageViewController to a UIViewController
//
// ViewController.swift
// PageViewController
//
// Created by Miguel Fermin on 5/8/17.
// Copyright © 2017 MAF Software LLC. All rights reserved.
//
import UIKit