Files
SwiftUI/Examples/iPadOS Scenes/BehindTheScenes/ContentView.swift
2019-06-06 17:37:50 +03:00

22 lines
369 B
Swift
Executable File

//
// 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 🚀")
}
}
}