Skip to content

Instantly share code, notes, and snippets.

@CrystalKnightCodes
Last active April 8, 2021 14:40
Show Gist options
  • Save CrystalKnightCodes/8d3a73a9fc0afa4c610c42d4e9df9f67 to your computer and use it in GitHub Desktop.
Save CrystalKnightCodes/8d3a73a9fc0afa4c610c42d4e9df9f67 to your computer and use it in GitHub Desktop.
Tabview Tutorial Region Model
class RegionModel: ObservableObject
{
@Published var region: MKCoordinateRegion
init(region: MKCoordinateRegion)
{
self.region = region
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment