Skip to content

Commit

Permalink
0.0.13
Browse files Browse the repository at this point in the history
Co-authored-by: MVP Bot <[email protected]>
Co-authored-by: Kasper Lahti <[email protected]>
  • Loading branch information
3 people authored Sep 13, 2022
1 parent 04d247d commit 5e09c81
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "Pow",
url: "https://packages.movingparts.io/binaries/pow/0.0.12/Pow.xcframework.zip",
checksum: "51f1479bb77bcdb775e0cfdfb14be5231185012e3fe8c2dcf994d381295a797c"
url: "https://packages.movingparts.io/binaries/pow/0.0.13/Pow.xcframework.zip",
checksum: "4fd8a2e00b886d5e5a41159a68f7991ba45217ad1e8690cb7f158cfa96fc831b"
),
]
)
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,17 @@ before settling.
static func flicker(count: Int) -> AnyTransition
```

## Film Exposure

[Preview](https://movingparts.io/pow/#film-exposure)

A transition from completely dark to fully visible on insertion, and
from fully visible to completely dark on removal.

```swift
static var filmExposure: AnyTransition
```

## Flip

[Preview](https://movingparts.io/pow/#flip)
Expand Down Expand Up @@ -323,6 +334,17 @@ Text("Hello")
static func rotate3D(_ angle: Angle, axis: (x: CGFloat, y: CGFloat, z: CGFloat), anchor: UnitPoint = .center, anchorZ: CGFloat = 0, perspective: CGFloat = 1) -> AnyTransition
```

## Snapshot

[Preview](https://movingparts.io/pow/#snapshot)

A transition from completely bright to fully visible on insertion, and
from fully visible to completely bright on removal.

```swift
static var snapshot: AnyTransition
```

## Skid

[Preview](https://movingparts.io/pow/#skid)
Expand Down Expand Up @@ -363,6 +385,9 @@ A transition that dissolves the view into many small particles.

The transition is only performed on removal.

> **Note:**
> This transition will use an ease-out animation with a duration of 900ms by default.
```swift
static var vanish: AnyTransition
```
Expand All @@ -371,6 +396,9 @@ A transition that dissolves the view into many small particles.

The transition is only performed on removal.

> **Note:**
> This transition will use an ease-out animation with a duration of 900ms by default.
- Parameter `style`: The style to use for the particles.

```swift
Expand Down

0 comments on commit 5e09c81

Please sign in to comment.