create home view that is the main tab view

This commit is contained in:
Trey t
2022-02-18 14:19:37 -06:00
parent 43bbaa4546
commit 065b7bcac1
6 changed files with 162 additions and 110 deletions

View File

@@ -0,0 +1,20 @@
//
// HomeViewTwo.swift
// Feels (iOS)
//
// Created by Trey Tartt on 2/18/22.
//
import SwiftUI
struct HomeViewTwo: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct HomeViewTwo_Previews: PreviewProvider {
static var previews: some View {
HomeViewTwo()
}
}