diff 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
line wrap: on
line diff
--- a/LazyBearWatchOS Extension/ContentView.swift	Tue Jun 22 19:57:08 2021 +0200
+++ b/LazyBearWatchOS Extension/ContentView.swift	Wed Jun 23 10:54:47 2021 +0200
@@ -9,8 +9,12 @@
 
 struct ContentView: View {
     var body: some View {
-        Text("Hello, World!")
-            .padding()
+        VStack {
+            ForEach((1..<4)) { _ in
+                Text("Hello")
+            }
+            .navigationTitle("Lazybear")
+        }
     }
 }