conversations-classic-ios/ConversationsClassic/View/Screens/AttachmentPickerScreen.swift

17 lines
354 B
Swift
Raw Normal View History

2024-07-02 08:32:14 +00:00
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")
}
}
}