Mercurial > public > lazybear
diff LazyBearWatchOS Extension/ContentView.swift @ 452:bb69f9d1d20f
Implement HomeView in WatchOS
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Sat, 26 Jun 2021 18:45:31 +0200 |
parents | 8621ba6fd457 |
children | b560babcd5ed |
line wrap: on
line diff
--- a/LazyBearWatchOS Extension/ContentView.swift Sat Jun 26 17:04:29 2021 +0200 +++ b/LazyBearWatchOS Extension/ContentView.swift Sat Jun 26 18:45:31 2021 +0200 @@ -10,11 +10,9 @@ struct ContentView: View { var body: some View { VStack { - ForEach((1..<4)) { _ in - Text("Hello") - } - .navigationTitle("Lazybear") + HomeView() } + .navigationTitle("Lazybear") } }