9 lines
171 B
Swift
9 lines
171 B
Swift
|
import SwiftUI
|
||
|
|
||
|
struct AttachmentContactsPickerView: View {
|
||
|
var body: some View {
|
||
|
Text("Contact Picker")
|
||
|
// Implement your contact picker here
|
||
|
}
|
||
|
}
|