Post

Replies

Boosts

Views

Activity

Comment on How can I handle NavigationLink for HStack row
here, I recommend you read question carefully. ` VStack{   NavigationLink(destination: ChatDetailView(), isActive: $profileData.show) { HStack{ VStack(alignment: .leading, spacing: 8, content: { Text(recent.userName) .fontWeight(.bold) Text(recent.lastMsg) .font(.caption) .foregroundColor(.gray) }) Spacer(minLength: 10) Text(recent.time) .font(.caption2) .foregroundColor(.gray) } Divider() } } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jun ’21