All Projects → spacenation → Swiftui Shapes

spacenation / Swiftui Shapes

Licence: mit
🚀 Collection of SwiftUI shapes

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Swiftui Shapes

Swiftui
A collaborative list of awesome SwiftUI resources. Feel free to contribute!
Stars: ✭ 774 (+464.96%)
Mutual labels:  apple, xcode, tvos, watchos
Swiftui Grid
🚀 SwiftUI Grid layout with custom styles
Stars: ✭ 872 (+536.5%)
Mutual labels:  apple, xcode, tvos, watchos
Swiftui Sliders
🚀 SwiftUI Sliders with custom styles
Stars: ✭ 241 (+75.91%)
Mutual labels:  apple, xcode, tvos, watchos
Swiftui Charts
🚀 SwiftUI Charts with custom styles
Stars: ✭ 272 (+98.54%)
Mutual labels:  apple, xcode, tvos, watchos
Exhibit
Exhibit is a managed screensaver App for tvOS.
Stars: ✭ 19 (-86.13%)
Mutual labels:  apple, xcode, tvos
Articles Zh Hans
Articles for NSHipster.cn
Stars: ✭ 113 (-17.52%)
Mutual labels:  xcode, tvos, watchos
Swift Sdk
LeanCloud Swift SDK
Stars: ✭ 110 (-19.71%)
Mutual labels:  apple, tvos, watchos
Sqlitelib
Easily build a custom SQLite static library for use in macOS and iOS frameworks and apps.
Stars: ✭ 38 (-72.26%)
Mutual labels:  xcode, tvos, watchos
Surmagic
🚀 The better way to deal with Binary Frameworks on iOS, Mac Catalyst, tvOS, macOS, and watchOS. Create XCFrameworks with ease.
Stars: ✭ 119 (-13.14%)
Mutual labels:  xcode, tvos, watchos
Conbini
Publishers, operators, and subscribers to supplement Combine.
Stars: ✭ 109 (-20.44%)
Mutual labels:  apple, tvos, watchos
Nord Xcode
An arctic, north-bluish clean and elegant Xcode color theme.
Stars: ✭ 63 (-54.01%)
Mutual labels:  apple, xcode, tvos
R.swift
Strong typed, autocompleted resources like images, fonts and segues in Swift projects
Stars: ✭ 8,419 (+6045.26%)
Mutual labels:  xcode, tvos, watchos
Articles
Articles for NSHipster.com
Stars: ✭ 1,166 (+751.09%)
Mutual labels:  xcode, tvos, watchos
Rome
Carthage cache for S3, Minio, Ceph, Google Storage, Artifactory and many others
Stars: ✭ 724 (+428.47%)
Mutual labels:  apple, tvos, watchos
Apprepositorytemplate
The easiest way to start a new application project without any manual configuration
Stars: ✭ 24 (-82.48%)
Mutual labels:  xcode, tvos, watchos
Open Source Ios Apps
📱 Collaborative List of Open-Source iOS Apps
Stars: ✭ 28,826 (+20940.88%)
Mutual labels:  apple, tvos, watchos
Flint
The Flint framework for building apps on Apple platforms using Feature Driven Development
Stars: ✭ 636 (+364.23%)
Mutual labels:  apple, tvos, watchos
Sqift
Powerful Swift wrapper for SQLite
Stars: ✭ 119 (-13.14%)
Mutual labels:  xcode, tvos, watchos
Stringz
A lightweight and powerful editor for localizing iOS, macOS, tvOS, and watchOS applications.
Stars: ✭ 440 (+221.17%)
Mutual labels:  xcode, tvos, watchos
Xcake
🍰 Describe Xcode projects in a human readable format and (re)generate one on demand.
Stars: ✭ 549 (+300.73%)
Mutual labels:  xcode, tvos, watchos

SwiftUI Shapes

Collection of custom shapes

Regular Polygons

RegularPolygon(sides: 32)
RoundedRegularPolygon(sides: 6, radius: 20)

Lines and Curves

QuadCurve(unitPoints: [
    UnitPoint(x: 0.1, y: 0.1),
    UnitPoint(x: 0.5, y: 0.9),
    UnitPoint(x: 0.9, y: 0.1)
])
.stroke(Color.blue, style: .init(lineWidth: 2, lineCap: .round))
.frame(height: 200)

Patterns

GridPattern(horizontalLines: 20, verticalLines: 40)
    .stroke(Color.white.opacity(0.3), style: .init(lineWidth: 1, lineCap: .round))
    .frame(height: 200)
    .background(Color.blue)
    .padding()

How to use

Add this swift package to your project with SPM

[email protected]:spacenation/swiftui-shapes.git

Code Contributions

Feel free to contribute via fork/pull request to master branch. If you want to request a feature or report a bug please start a new issue.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].