Mercurial > public > lazybear
view LazyBearWatchOS Extension/ContentView.swift @ 448:f71761f166f2
Handle when data is empty
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Wed, 23 Jun 2021 11:47:14 +0200 |
parents | 8621ba6fd457 |
children | bb69f9d1d20f |
line wrap: on
line source
// // ContentView.swift // LazyBearWatchOS Extension // // Created by Dennis Concepción Martín on 19/6/21. // import SwiftUI struct ContentView: View { var body: some View { VStack { ForEach((1..<4)) { _ in Text("Hello") } .navigationTitle("Lazybear") } } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } }