mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-03-30 14:12:31 +02:00
Add iPadOS Scenes
This commit is contained in:
21
Examples/iPadOS Scenes/BehindTheScenes/ContentView.swift
Executable file
21
Examples/iPadOS Scenes/BehindTheScenes/ContentView.swift
Executable 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 🚀")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user