mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-01-17 06:26:48 +01:00
22 lines
369 B
Swift
Executable File
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 🚀")
|
|
}
|
|
}
|
|
}
|
|
|