Starter utilities for creating magic with geometry and shapes in SwiftUI.
Select File
-> Swift Packages
-> Add Package Dependency
and enter https://github.com/CypherPoet/SwiftUIGeometryUtils
.
You can add SwiftUIGeometryUtils
as a package dependency in your Package.swift
file:
let package = Package(
//...
dependencies: [
.package(url: "https://github.com/CypherPoet/SwiftUIGeometryUtils", .exact("0.0.2")),
],
//...
)
From there, refer to SwiftUIGeometryUtils
as a "target dependency" in any of your package's targets that need it.
targets: [
.target(
name: "YourLibrary",
dependencies: [
"SwiftUIGeometryUtils",
],
...
),
...
]
Then simply import SwiftUIGeometryUtils
wherever you’d like to use it.
Contributions to SwiftUIGeometryUtils
are most welcome. Check out some of the issue templates for more info.
Documentation is generated by Jazzy. Installation instructions can be found here, and as soon as you have it set up, docs can be generated simply by running jazzy
from the command line.
📝 Note that this will only generate the docs
folder for you to view locally. This folder is being ignored by git
, as an action exists to automatically generate docs at the root level and serve them on the project's gh-pages
branch.
SwiftUIGeometryUtils
is available under the MIT license. See the LICENSE file for more info.
link |
Stars: 0 |
Last commit: 2 weeks ago |
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco