Skip to content

Releases: fatbobman/SwiftUIOverlayContainer

2.4.1

11 Nov 03:09
Compare
Choose a tag to compare

2.4.0

06 Feb 07:03
Compare
Choose a tag to compare

Added separate safe area settings for the background by @YjAdair

2.3.3

16 Apr 02:28
Compare
Choose a tag to compare

User can change ContainerManager instance in view, for multiple windows

2.3.2

27 Mar 22:49
c47d6f7
Compare
Choose a tag to compare

from @telami
Fixed the issue of the loss of UUID

2.3.1

16 Mar 23:36
Compare
Choose a tag to compare

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))

2.2.4

26 Feb 08:43
Compare
Choose a tag to compare

fix background display bug in stack mode
change view configuration demo

2.2.3

10 Feb 03:59
Compare
Choose a tag to compare

修复了 stack 模式下的 transition 显示错误

2.2.2

19 Sep 22:36
e2c9a94
Compare
Choose a tag to compare

Fix the function dismiss does not correctly apply container animation

2.2.1

08 Apr 12:24
Compare
Choose a tag to compare

Added display order option to container configuration.
The developer can control the display order of the views (new view is displayed on top or bottom).
For usage, please refer to the demo of DisplayType

2.1.0

03 Apr 10:09
Compare
Choose a tag to compare

Add ignoresSafeArea to container configuration