An open API service indexing awesome lists of open source software.

https://github.com/3sidedcube/arcui

UI components for the American Red Cross (ARC) apps written in SwiftUI
https://github.com/3sidedcube/arcui

Last synced: 8 months ago
JSON representation

UI components for the American Red Cross (ARC) apps written in SwiftUI

Awesome Lists containing this project

README

          

# ArcUI

UI components for the American Red Cross (ARC) apps written in SwiftUI.

## Installation

Add the following as a package dependency in Xcode

```
https://github.com/3sidedcube/ArcUI.git
```

or, in your `Package.swift`, add:

```swift
...
dependencies: [
.package(
url: "https://github.com/3sidedcube/ArcUI.git",
branch: "develop"
)
],
...
targets: [
.target(
name: "{YourApp}",
dependencies: ["ArcUI"]
)
]
```