12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // NCUserStatus.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 23/11/20.
- // Copyright © 2020 Marino Faggiana. All rights reserved.
- //
- import SwiftUI
- @available(iOS 13.0, *)
- struct NCUserStatus: View {
- var body: some View {
-
- VStack(alignment: .leading) {
-
- HStack {
- Image("userStatusAway")
- .resizable()
- .frame(width: 100.0, height: 100.0)
- .clipShape(Circle())
- }
-
- Text("Hello World44,2")
- .font(.headline)
- .foregroundColor(Color.red)
- .lineLimit(0)
- Text("test")
- }
- }
- }
- @available(iOS 13.0, *)
- struct NCUserStatus_Previews: PreviewProvider {
- static var previews: some View {
- Group {
- NCUserStatus()
- }
- }
- }
|