comparison LazyBearWatchOS Extension/ContentView.swift @ 429:e4ca9898b79b

Add WatchOS Target
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Sat, 19 Jun 2021 16:20:58 +0200
parents
children 8621ba6fd457
comparison
equal deleted inserted replaced
428:8c58ce834d95 429:e4ca9898b79b
1 //
2 // ContentView.swift
3 // LazyBearWatchOS Extension
4 //
5 // Created by Dennis Concepción Martín on 19/6/21.
6 //
7
8 import SwiftUI
9
10 struct ContentView: View {
11 var body: some View {
12 Text("Hello, World!")
13 .padding()
14 }
15 }
16
17 struct ContentView_Previews: PreviewProvider {
18 static var previews: some View {
19 ContentView()
20 }
21 }