Skip to content

Instantly share code, notes, and snippets.

View louis1001's full-sized avatar
🏠
Working from home

Luis Gonzalez louis1001

🏠
Working from home
View GitHub Profile
@stleamist
stleamist / PageView.swift
Created May 19, 2020 11:08
A representation of UIPageViewController in SwiftUI.
import SwiftUI
struct PageView<Page: View>: UIViewControllerRepresentable {
var pages: [Page]
@Binding var currentPage: Int
func makeUIViewController(context: Context) -> UIPageViewController {
let pageViewController = UIPageViewController(transitionStyle: .scroll, navigationOrientation: .horizontal)