Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafaelesantos/refds-design-system
RefdsUI is a Swift Package designed to streamline the implementation of a design system in SwiftUI. It offers a collection of reusable components and view extensions to enhance your SwiftUI development experience.
https://github.com/rafaelesantos/refds-design-system
components design-system swift swiftui
Last synced: about 1 month ago
JSON representation
RefdsUI is a Swift Package designed to streamline the implementation of a design system in SwiftUI. It offers a collection of reusable components and view extensions to enhance your SwiftUI development experience.
- Host: GitHub
- URL: https://github.com/rafaelesantos/refds-design-system
- Owner: rafaelesantos
- License: mit
- Created: 2022-12-17T22:16:55.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-07T02:31:43.000Z (4 months ago)
- Last Synced: 2024-11-10T12:16:42.587Z (3 months ago)
- Topics: components, design-system, swift, swiftui
- Language: Swift
- Homepage:
- Size: 1.05 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RefdsUI
RefdsUI is a Swift Package designed to streamline the implementation of a design system in SwiftUI. It offers a collection of reusable components and view extensions to enhance your SwiftUI development experience.
## Features
- Components: Includes a variety of pre-built UI components such as toggles, calendars, loading indicators, text views, text fields, buttons, cards, and more.
- View Extensions: Provides extensions on SwiftUI views to simplify common tasks like navigation and binding.## Installation
Add this project to your `Package.swift` file.
```swift
import PackageDescriptionlet package = Package(
dependencies: [
.package(url: "https://github.com/rafaelesantos/refds-design-system.git", branch: "main")
],
targets: [
.target(
name: "YourProject",
dependencies: [
.product(
name: "RefdsUI",
package: "refds-design-system"),
]),
]
)
```