This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@available(iOS 16.0, *) | |
extension View { | |
func presentationDetents( | |
undimmed detents: Set<PresentationDetent> | |
) -> some View { | |
self.presentationDetents(detents) | |
.background(UndimmedDetentView()) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Store.swift | |
// Posture Pal | |
// | |
// Created by Jordi Bruin on 28/02/2022. | |
// | |
import Foundation | |
import Foundation |
OlderNewer