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
- Host: GitHub
- URL: https://github.com/3sidedcube/arcui
- Owner: 3sidedcube
- Created: 2023-05-18T15:23:19.000Z (about 3 years ago)
- Default Branch: develop
- Last Pushed: 2024-11-15T16:32:42.000Z (over 1 year ago)
- Last Synced: 2025-01-30T01:22:25.508Z (over 1 year ago)
- Language: Swift
- Size: 31.5 MB
- Stars: 0
- Watchers: 9
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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"]
)
]
```