This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import SwiftUI | |
struct MyView: View { | |
@State var number: Int = .zero | |
var body: some View { | |
MyViewController.SwiftUIView(number: $number) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.swift | |
// PageViewController | |
// | |
// Created by Miguel Fermin on 5/8/17. | |
// Copyright © 2017 MAF Software LLC. All rights reserved. | |
// | |
import UIKit |