NCUserStatus.swift 521 B

12345678910111213141516171819202122232425262728
  1. //
  2. // NCUserStatus.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 23/11/20.
  6. // Copyright © 2020 Marino Faggiana. All rights reserved.
  7. //
  8. import SwiftUI
  9. @available(iOS 13.0, *)
  10. struct NCUserStatus: View {
  11. var body: some View {
  12. //Text("Hello, World24!")
  13. VStack {
  14. Text("Hello World44,2")
  15. }
  16. }
  17. }
  18. @available(iOS 13.0, *)
  19. struct NCUserStatus_Previews: PreviewProvider {
  20. static var previews: some View {
  21. Group {
  22. NCUserStatus()
  23. }
  24. }
  25. }