import SwiftUI struct AttachmentPickerScreen: View { @EnvironmentObject var store: AppStore var body: some View { VStack { Button { store.dispatch(.conversationAction(.showAttachmentPicker(false))) } label: { Text("Back") } Text("Do It") } } }