ChatListCellView.swift 790 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // ChatListCellView.swift
  3. // Chat (iOS)
  4. //
  5. // Created by Sergey Tarasov on 14.10.2022.
  6. //
  7. import SwiftUI
  8. struct ChatListCellView: View {
  9. let nickname: String
  10. let jid: String
  11. var body: some View {
  12. ZStack {
  13. HStack {
  14. Image(systemName: "person.crop.circle")
  15. .resizable()
  16. .scaledToFit()
  17. .foregroundColor(.secondary.opacity(0.5))
  18. Text(nickname)
  19. Spacer()
  20. }
  21. .foregroundColor(.primary)
  22. .frame(height: 30)
  23. NavigationLink {
  24. ChatView(viewModel: ChatViewModel(with: jid))
  25. } label: {
  26. EmptyView()
  27. }
  28. .opacity(0.0)
  29. }
  30. }
  31. }
  32. struct ChatListCellView_Previews: PreviewProvider {
  33. static var previews: some View {
  34. ChatListCellView(nickname: "Nickname", jid: "user@domain.com")
  35. .padding()
  36. .previewLayout(.sizeThatFits)
  37. }
  38. }