You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- You can use CocoaPods to install SSSwiftUIAnimations by adding it to your Podfile. It will add all the Animation to your project:
40
+
41
+
use_frameworks!
42
+
pod 'SSSwiftUIAnimations'
43
+
44
+
- For installing only particular Animation from the Pod. Use /AnimationName at the end. You can find the AnimationName at the bottom of Animations listed above.<br/> **Example: pod 'SSSwiftUIAnimations/WaterProgressAnimation'**
45
+
46
+
pod 'SSSwiftUIAnimations/[AnimationName]'
47
+
48
+
- Then, wherever you want to use it, Just:
49
+
50
+
import SwiftUI
51
+
import SSSwiftUIAnimations
52
+
53
+
**Swift Package Manager**
54
+
55
+
- When using Xcode 11 or later, you can install `SSSwiftUIAnimations` through [Swift Package Manager](https://swift.org/package-manager/) by going to your Project settings > `Swift Packages` and add the repository by providing the GitHub URL. Alternatively, you can go to `File` > `Swift Packages` > `Add Package Dependencies...`
56
+
57
+
**Manually**
58
+
- Download and drop **SSSwiftUIAnimations** folder in your project.
0 commit comments