Mercurial > public > lazybear
view LazyBearWatchOS Extension/ContentView.swift @ 455:b560babcd5ed
WatchOS views implemented
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Mon, 28 Jun 2021 11:55:19 +0200 |
parents | bb69f9d1d20f |
children | c6913f0ce46e |
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 { WatchOSProfileView() } .navigationTitle("Lazybear") } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } }