conversations-classic-ios/ConversationsClassic/View/Screens/AttachmentPickerScreen.swift
2024-07-02 10:32:14 +02:00

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")
}
}
}