2022-11-29 14:16:54 +01:00
|
|
|
//
|
|
|
|
// ContentView.swift
|
|
|
|
// BeReal
|
|
|
|
//
|
|
|
|
// Created by Javier Cicchelli on 29/11/2022.
|
2022-11-29 19:13:45 +01:00
|
|
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
2022-11-29 14:16:54 +01:00
|
|
|
//
|
|
|
|
|
|
|
|
import SwiftUI
|
2022-12-02 19:51:21 +01:00
|
|
|
import Login
|
2022-11-29 14:16:54 +01:00
|
|
|
|
|
|
|
struct ContentView: View {
|
|
|
|
var body: some View {
|
2022-12-03 07:41:47 +01:00
|
|
|
NavigationView {
|
|
|
|
BrowseView()
|
2022-11-29 14:16:54 +01:00
|
|
|
}
|
2022-12-02 12:46:48 +01:00
|
|
|
.sheet(isPresented: .constant(true)) {
|
|
|
|
LoginView()
|
|
|
|
}
|
2022-11-29 14:16:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ContentView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
|
|
|
ContentView()
|
|
|
|
}
|
|
|
|
}
|