// // CondensedProfilePicturesView.swift // damus // // Created by Terry Yiu on 6/19/23. // import SwiftUI struct CondensedProfilePicturesView: View { let state: DamusState let pubkeys: [String] let maxPictures: Int init(state: DamusState, pubkeys: [String], maxPictures: Int) { self.state = state self.pubkeys = pubkeys self.maxPictures = min(maxPictures, pubkeys.count) } var body: some View { // Using ZStack to make profile pictures floating and stacked on top of each other. ZStack { ForEach((0..