Page MenuHomeMusing Studio

CollectionPicker.swift
No OneTemporary

CollectionPicker.swift

import SwiftUI
struct CollectionPicker: View {
@Binding var selectedCollection: PostCollection
private let collections = [
defaultDraftCollection,
testPostCollection1,
testPostCollection2,
testPostCollection3
]
var body: some View {
Picker("Collection", selection: $selectedCollection) {
ForEach(collections) { collection in
Text(collection.title).tag(collection)
}
}
}
}

File Metadata

Mime Type
text/x-c
Expires
Thu, Apr 2, 5:42 AM (17 h, 30 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3678490

Event Timeline