Releases: fatbobman/SwiftUIOverlayContainer
Releases · fatbobman/SwiftUIOverlayContainer
2.4.1
2.4.0
2.3.3
2.3.2
2.3.1
Added queue time control option for containers
Perform window operations after the specified time interval has elapsed, the default is None, that is, not enabled
Only applicable to scenarios with special requirements, such as replacing Sheet with OverallContainer. In a List, clicking each row will pop up a window. In this case, if the user accidentally taps with multiple fingers, it will open a multi-window situation. Enable the debounce function for the container, and the container will only retain one valid operation in a short period of time. Usually just set the expiry time to 0.1 seconds (.debounce(seconds: 0.1)
)