my-files-sample/BeReal/ContentView.swift

32 lines
634 B
Swift
Raw Normal View History

2022-11-29 14:16:54 +01:00
//
// ContentView.swift
// BeReal
//
// Created by Javier Cicchelli on 29/11/2022.
// Copyright © 2022 Röck+Cöde. All rights reserved.
2022-11-29 14:16:54 +01:00
//
import SwiftUI
import Login
2022-11-29 14:16:54 +01:00
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundColor(.accentColor)
Text("Hello, world!")
}
.padding()
.sheet(isPresented: .constant(true)) {
LoginView()
}
2022-11-29 14:16:54 +01:00
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}