feat: Adds text labeled content and style.

This commit is contained in:
2024-06-11 16:31:59 -04:00
parent c6c45ffa7e
commit da8a8638c7
8 changed files with 144 additions and 77 deletions

View File

@@ -19,12 +19,12 @@ public struct PressureEstimationsFeature {
@ObservableState
public struct State: Equatable {
@Presents public var destination: Destination.State?
@Shared(.sharedPressureEstimationSettings) var sharedSettings = SharedPressureEstimationSettings()
@Shared(.sharedPressureEstimationSettings) var sharedSettings = SharedPressureEstimationState()
public var equipmentSettings: EquipmentSettingsForm.State
public init(
destination: Destination.State? = nil,
sharedSettings: SharedPressureEstimationSettings = .init()
sharedSettings: SharedPressureEstimationState = .init()
) {
self.destination = destination
self._sharedSettings = Shared(sharedSettings)