ContentView.swift 331 B

12345678910111213141516171819202122
  1. //
  2. // ContentView.swift
  3. // FreeAPS
  4. //
  5. // Created by Ivan Valkou on 12.01.2021.
  6. //
  7. import SwiftUI
  8. struct ContentView: View {
  9. var body: some View {
  10. Text("Hello, world!")
  11. .padding()
  12. }
  13. }
  14. struct ContentView_Previews: PreviewProvider {
  15. static var previews: some View {
  16. ContentView()
  17. }
  18. }