comparison LazyBearWatchOS Extension/ContentView.swift @ 447:8621ba6fd457

Fixes #48
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Wed, 23 Jun 2021 10:54:47 +0200
parents e4ca9898b79b
children bb69f9d1d20f
comparison
equal deleted inserted replaced
446:9cc0455bc46f 447:8621ba6fd457
7 7
8 import SwiftUI 8 import SwiftUI
9 9
10 struct ContentView: View { 10 struct ContentView: View {
11 var body: some View { 11 var body: some View {
12 Text("Hello, World!") 12 VStack {
13 .padding() 13 ForEach((1..<4)) { _ in
14 Text("Hello")
15 }
16 .navigationTitle("Lazybear")
17 }
14 } 18 }
15 } 19 }
16 20
17 struct ContentView_Previews: PreviewProvider { 21 struct ContentView_Previews: PreviewProvider {
18 static var previews: some View { 22 static var previews: some View {