arcgis-maps-sdk-swift-toolkit
arcgis-maps-sdk-swift-toolkit copied to clipboard
Mapping components that will simplify your Swift app development with the ArcGIS Maps SDK for Swift.
If you are using a `SearchView` with a custom search source and you later change the search source then the `SearchView` will continue using the older search source. That is...
Add a Scalebar preview to quickly validate changes When we bump up to iOS 17 minimum this'll be easier to implement with `View.onChange(of:initial:_:)`
When the `JobManager` is constructed it registers the launch handler [here](https://github.com/Esri/arcgis-maps-sdk-swift-toolkit/blob/49a1b26be1ac612f3b78f0b273062dad60bd153f/Sources/ArcGISToolkit/Components/JobManager/JobManager.swift#L129). And the doc for that method says:  and I ran into a case where the `JobManager` was created...
Barcode Input fields should be able to display a hint if one is defined (see [formFieldElement doc](https://developers.arcgis.com/web-map-specification/objects/formFieldElement/)). Seems they ignore any hint. https://github.com/Esri/arcgis-maps-sdk-swift-toolkit/blob/49a1b26be1ac612f3b78f0b273062dad60bd153f/Sources/ArcGISToolkit/Components/FeatureFormView/Subviews/Inputs/TextInput.swift#L119
For background, see the discussions within #1023.
We could make the offline map component look a little better on the visionOS platform. - Ideally the hover effect would take up the entire row here  - In...
Is preconcurrency attribute still needed on all views where it is used? ie: ```swift @preconcurrency public struct Bookmarks: View { ``` I removed it as a test and I don't...
Currently, if you look at `UtilityNetworkTrace` on visionOS it looks like this:  And on iOS it looks like this:  visionOS should have a darker background material (According to...
(Feedback from @PeggyDu09) After the `Form` changes, I tried to achieve this but wasn't able to. Right now it looks like each group form element is grouped together when they...
There is a situation where requesting camera/video access when adding an attachment will fail. - New install only (so you get the "request access" alert and not the "go to...