RefdsShared
is a collection of handy functions and extensions to facilitate Swift development. This package provides a variety of extensions for primitive types, date manipulation, and new components that can be easily integrated into other Swift projects.
- Extensions for Primitive Types: Extensions for primitive types like String, Int, Double, etc., to add additional functionality and ease working with these types.
- Date Manipulation: Functions to facilitate date manipulation, such as formatting, difference calculation, etc.
- New Components: Custom components that can be easily integrated into user interfaces, such as new controls, custom views, etc.
Add this project to your Package.swift
file.
import PackageDescription
let package = Package(
dependencies: [
.package(url: "https://github.com/rafaelesantos/refds-shared.git", branch: "main")
],
targets: [
.target(
name: "YourProject",
dependencies: [
.product(
name: "RefdsShared",
package: "refds-shared"),
]),
]
)