Files
WerkoutIOS/Werkout_watch Watch App/ContentView.swift
Trey t 5ca99cf832 WIP
2023-07-08 10:21:53 -05:00

28 lines
483 B
Swift

//
// ContentView.swift
// Werkout_watch Watch App
//
// Created by Trey Tartt on 6/22/23.
//
import SwiftUI
import WatchKit
struct ContentView: View {
var body: some View {
TabView {
MainWatchView()
WatchControlView()
NowPlayingView()
}
.padding()
.tabViewStyle(PageTabViewStyle())
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}