Easily create dragabble menu
The gifs are not very good quality. Content is fluid. Sorry for this :(
- Open your project on Xcode
- Go to Project Tab and select "Package Dependencies"
- Click "+" and search this package with use git clone url
- Don't change anything and click Add Package
- The package will be attached to the targeted application
import SwiftUIDragMenu struct DemoView: View { var body: some View { LeftDraggableMenu { // Your main screenView } secondContent: { // Your dragmenuView } } }| Variable | Type | Recommend Usage |
|---|---|---|
| content | View | Use with padding |
| secondContent | View | Use with padding |
Button configuration will be added
import SwiftUIDragMenu struct DemoView: View { var body: some View { LeftAnimatedMenu { // Your main screenView } secondContent: { // Your dragmenuView } } }| Variable | Type | Recommend Usage |
|---|---|---|
| content | View | Use with padding |
| secondContent | View | Use with padding |

