30 lines
524 B
Swift
30 lines
524 B
Swift
//
|
|
// ContentView.swift
|
|
// BeReal
|
|
//
|
|
// Created by Javier Cicchelli on 29/11/2022.
|
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import Browse
|
|
import Login
|
|
import Profile
|
|
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
NavigationView {
|
|
BrowseView()
|
|
}
|
|
.sheet(isPresented: .constant(true)) {
|
|
ProfileView {}
|
|
}
|
|
}
|
|
}
|
|
|
|
struct ContentView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ContentView()
|
|
}
|
|
}
|