### Configure FHIRStore in SpeziAppDelegate Source: https://github.com/stanfordspezi/spezifhir/blob/main/README.md Configure the FHIRStore in your SpeziAppDelegate to manage FHIR resources in your application. Ensure SpeziFHIR is imported. ```swift import Spezi import SpeziFHIR class ExampleAppDelegate: SpeziAppDelegate { override var configuration: Configuration { Configuration { FHIRStore() } } } ``` -------------------------------- ### Display FHIR Resources in SwiftUI View Source: https://github.com/stanfordspezi/spezifhir/blob/main/README.md Use the FHIRStore to manage FHIR resources in your application and display them in a SwiftUI view. The store provides access to observations and conditions. ```swift import SpeziFHIR import SwiftUI struct ExampleView: View { @Environment(FHIRStore.self) private var fhirStore var body: some View { List { Section("Observations") { ForEach(fhirStore.observations) { observation in Text(observation.displayName) } } Section("Conditions") { ForEach(fhirStore.conditions) { condition in Text(condition.displayName) } } } } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.