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
|
|
|
|
|
|
|
|
struct ContentView: View {
|
|
|
|
var body: some View {
|
|
|
|
VStack {
|
|
|
|
Image(systemName: "globe")
|
|
|
|
.imageScale(.large)
|
|
|
|
.foregroundColor(.accentColor)
|
|
|
|
Text("Hello, world!")
|
|
|
|
}
|
|
|
|
.padding()
|
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()
|
|
|
|
}
|
|
|
|
}
|