17 lines
354 B
Swift
17 lines
354 B
Swift
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")
|
|
}
|
|
}
|
|
}
|