arcgis-maps-sdk-swift-toolkit icon indicating copy to clipboard operation
arcgis-maps-sdk-swift-toolkit copied to clipboard

Remove use of deprecated view modifiers

Open des12437 opened this issue 1 year ago • 0 comments
trafficstars

The following view modifiers should be replaced with the following:

  • foregroundColor is deprecated:
    • .foregroundColor(.accentColor) -> .foregroundStyle(Color.accentColor)
  • cornerRadius will be deprecated in iOS 18:
    • .cornerRadius(5) -> .clipShape(.rect(cornerRadius: 5))

des12437 avatar Aug 21 '24 18:08 des12437