GitXplorerGitXplorer
n

Ignition

public
21 stars
1 forks
0 issues

Commits

List of commits on branch main.
Unverified
cb4ee7c5ffc5f80520b989d2c58847fcbd134832

1.1.0

nnathantannar4 committed 12 days ago
Unverified
22482ae208235692e053282285e04c156b6fa66b

1.0.2

nnathantannar4 committed 8 months ago
Unverified
0cc2472337d36238994479c63414b84998bf6b86

1.0.1

nnathantannar4 committed 10 months ago
Unverified
1bb214ac2f0ba2560e269d0ea92037f3d04afe9a

1.0.0

nnathantannar4 committed a year ago
Verified
ade3988c4fd6eb773a95b849bb6b4452d4618d07

Update README.md

nnathantannar4 committed a year ago
Unverified
b5defad136b1a6c0b580eef6e01411f8a0925979

0.1.0

nnathantannar4 committed a year ago

README

The README file for this repository.

Ignition

Ignition aims to help make your SwiftUI views feel more interactive. It does this by providing API that makes it easier to run animations.

Built for performance and backwards compatibility using Engine

See Also

Preview

https://github.com/nathantannar4/Ignition/assets/15272998/0d7b97a0-bf3a-4c07-9a00-b237408f49a4

Requirements

  • Deployment target: iOS 13.0, macOS 10.15, tvOS 13.0, or watchOS 6.0
  • Xcode 15+

Installation

Xcode Projects

Select File -> Swift Packages -> Add Package Dependency and enter https://github.com/nathantannar4/Ignition.

Swift Package Manager Projects

You can add Ignition as a package dependency in your Package.swift file:

let package = Package(
    //...
    dependencies: [
        .package(url: "https://github.com/nathantannar4/Ignition"),
    ],
    targets: [
        .target(
            name: "YourPackageTarget",
            dependencies: [
                .product(name: "Ignition", package: "Ignition"),
            ],
            //...
        ),
        //...
    ],
    //...
)