Add iPadOS Scenes

This commit is contained in:
Ivan Vorobei
2019-06-06 17:37:50 +03:00
parent e4f31bca18
commit 3b56e7f430
22 changed files with 795 additions and 314 deletions

View File

@@ -0,0 +1,21 @@
//
// ContentView.swift
// BehindTheScenes
//
// Created by Simeon Saint-Saens on 4/6/19.
// Copyright © 2019 Two Lives Left. All rights reserved.
//
import SwiftUI
struct ContentView : View {
let count: Int
var body: some View {
VStack {
Text("Scene \(count)")
Text("This is a SwiftUI View 🚀")
}
}
}