docs/platform-native.md covers HTML, CSS, JS, Node, Python, and databases, but there's no Apple/Swift section, and none of the examples are Swift. On Apple platforms the "does the platform already do this?" rung is especially rich, so the gap is worth filling.
Proposed rows for a Swift / SwiftUI section:
| You think you need |
What the platform has |
| Date/time picker library |
DatePicker |
| Pull-to-refresh library |
.refreshable { } |
| Search bar component |
.searchable(text:) |
| Image loading/caching library |
AsyncImage |
| JSON parsing library |
Codable |
| HTTP client (Alamofire) |
URLSession async/await |
| Charting library |
Swift Charts |
| Number/date formatting library |
.formatted() / FormatStyle |
| Markdown renderer |
AttributedString(markdown:) |
| Share sheet wrapper |
ShareLink |
| Persistence/ORM |
SwiftData / @AppStorage |
| Loading spinner |
ProgressView |
Happy to send a PR with this section plus a Swift example or two (a native DatePicker over a calendar lib reads well) if it fits the scope you want for the doc.
docs/platform-native.mdcovers HTML, CSS, JS, Node, Python, and databases, but there's no Apple/Swift section, and none of the examples are Swift. On Apple platforms the "does the platform already do this?" rung is especially rich, so the gap is worth filling.Proposed rows for a Swift / SwiftUI section:
DatePicker.refreshable { }.searchable(text:)AsyncImageCodableURLSessionasync/await.formatted()/FormatStyleAttributedString(markdown:)ShareLinkSwiftData/@AppStorageProgressViewHappy to send a PR with this section plus a Swift example or two (a native
DatePickerover a calendar lib reads well) if it fits the scope you want for the doc.