All Projects → jayeshk → Doric

jayeshk / Doric

Licence: other
Protocol oriented, type safe, scalable design system foundation swift framework for iOS.

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Doric

Theme Ui
Build consistent, themeable React apps based on constraint-based design principles
Stars: ✭ 4,150 (+5433.33%)
Mutual labels:  design, design-system, typography, color
rebass
⚛️ React primitive UI components built with styled-system.
Stars: ✭ 7,844 (+10358.67%)
Mutual labels:  color, typography, design-system
Figma Export
Command line utility to export colors, typography, icons and images from Figma to Xcode / Android Studio project
Stars: ✭ 235 (+213.33%)
Mutual labels:  xcode, design, typography
theme-ui-native
Build consistent, themeable React Native apps based on constraint-based design principles
Stars: ✭ 67 (-10.67%)
Mutual labels:  color, typography, design-system
Sketch Ios Library
💎 A library of iOS styles replicated in Sketch to speed up your workflow.
Stars: ✭ 264 (+252%)
Mutual labels:  apple, xcode, design
Xcode One Dark
Atom One Dark theme for Xcode
Stars: ✭ 273 (+264%)
Mutual labels:  xcode, color, color-theme
Nord Xcode
An arctic, north-bluish clean and elegant Xcode color theme.
Stars: ✭ 63 (-16%)
Mutual labels:  apple, xcode, color
Swiftui
A collaborative list of awesome SwiftUI resources. Feel free to contribute!
Stars: ✭ 774 (+932%)
Mutual labels:  apple, xcode
Exhibit
Exhibit is a managed screensaver App for tvOS.
Stars: ✭ 19 (-74.67%)
Mutual labels:  apple, xcode
Swiftui Grid
🚀 SwiftUI Grid layout with custom styles
Stars: ✭ 872 (+1062.67%)
Mutual labels:  apple, xcode
System Design And Architecture
Learn how to design large-scale systems. Prep for the system design interview.
Stars: ✭ 1,005 (+1240%)
Mutual labels:  design, design-system
Nord Visual Studio Code
An arctic, north-bluish clean and elegant Visual Studio Code theme.
Stars: ✭ 749 (+898.67%)
Mutual labels:  color, color-theme
Teaching App Dev Swift
DEPRECATED. Instructor lesson plans that accompany Xcode projects, for guiding in-class experiential learning.
Stars: ✭ 699 (+832%)
Mutual labels:  apple, xcode
Eva
💫Customizable Design System easily adaptable to your Brand.
Stars: ✭ 843 (+1024%)
Mutual labels:  design, design-system
Awesome Swift Korean Lecture
훌륭한 Swift 세션 동영상(강좌), 한글 자막있는 혹은 한국어 강의 정보 링크 모음 (Awesome Swift Korean lecture information)
Stars: ✭ 649 (+765.33%)
Mutual labels:  apple, xcode
Leonardo
Generate colors based on a desired contrast ratio
Stars: ✭ 973 (+1197.33%)
Mutual labels:  color, color-theme
Vivid
A themeable LS_COLORS generator with a rich filetype datebase
Stars: ✭ 535 (+613.33%)
Mutual labels:  color, color-theme
Nord Guake
An arctic, north-bluish clean and elegant Guake color theme.
Stars: ✭ 20 (-73.33%)
Mutual labels:  color, color-theme
Material Theme For Xcode
Material design color schemes for Xcode
Stars: ✭ 43 (-42.67%)
Mutual labels:  xcode, color
Colorschemes.jl
colorschemes, colormaps, gradients, and palettes
Stars: ✭ 55 (-26.67%)
Mutual labels:  color, color-theme

Doric: Design System Foundation in Swift

Build Status CocoaPods Compatible Carthage compatible Platform Documentation

Doric: Design System Foundation

Design System foundation written in Swift. Protocol oriented, type safe, scalable framework for iOS.

Features

  • [x] Typography
  • [x] Iconography
  • [x] Colour Palette
  • [x] Dynamic scalable font support
  • [x] Auto layout
  • [x] Gradients, Shadows, Borders and other scales
  • [x] Layout spacing
  • [x] Themes
  • [x] UI Debugging helpers
  • [x] API Document & Usage Documentation

Sketch Plugin

Roadmap

Not in specific orders to achieve it.

  • [ ] Add debugging tools (Ruler etc.) [In progress]
  • [ ] Expand framework to create more Styles
  • [ ] Colour processing utilities
  • [ ] Trait based layouts (UITraitCollection) [In progress]
  • [ ] Accessibility for colour palettes
  • [x] Sketch plugin to generate palette. Try here

Usage Guide

  • See documentation

Requirements

  • iOS 11.0+
  • Xcode 10.2+
  • Swift 5

Demo

Preview Preview

Installation

CocoaPods

CocoaPods is an application level dependency manager for the Objective-C, Swift and any other languages that run on the Objective-C runtime that provides a standard format for managing external libraries. For usage and installation instructions visit site

To integrate Doric using CocoaPods, specify it in your Podfile:

pod 'Doric', '~> 1.0.0'

Carthage

Carthage builds your dependencies and provides you with binary frameworks, but you retain full control over your project structure and setup. Carthage does not automatically modify your project files or your build settings.

. To integrate Doric into your Xcode project using Carthage, specify it in your Cartfile:

github "jayeshk/Doric" ~> 1.0.0

Manually

If you can integrate project manually as below using git submodule

Embedded Framework

  • Open up Terminal, cd into your top-level project directory, and run the following command "if" your project is not initialised as a git repository:

    $ git init
    
  • Add Doric as a git submodule by running the following command:

    $ git submodule add https://github.com/jayeshk/Doric.git
    
  • Open the new Doric folder and drag the Doric.xcodeproj into the Project Navigator.

    It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter.

  • Select the Doric.xcodeproj in the Project Navigator and verify the deployment target matches that of your application target.

  • Next, select your application project in the Project Navigator to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.

  • In the tab bar at the top of that window, open the "General" panel.

  • Click on the + button under the "Embedded Binaries" section.

  • You will see Doric.framework nested inside a Products folder. Select the Doric.framework for iOS.

    You can verify which one you selected by inspecting the build log for your project. The build target for Doric will be listed as Doric.

    Doric.framework is automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device.

Contribute

Doric is open to contribute, see contribution notes.

  • If you want to contribute, submit a pull request.
  • If you found a bug, open an issue.
  • If you need help with a feature or need to discuss best practices please see usage document , still anything to discuss contact me ([email protected]).

FAQ

About Doric name?

The Doric order was one of the three orders of ancient Greek and later Roman architecture, Doric is named based Doric_order. Hence provides pillars for your digital products.

Why Design System required?

As the number of devices screen variants and environments are increasing, so there is need to create scalable interface Design Systems.

Doric's primary goal is to create a system which allows you to manage design at scale for iOS. Consistency, scalability and efficiency across app are focused areas. See Awesome Design Systems

It is required to implement all parts of Doric?

Doric provides various building blocks to implement interface. All blocks can be used independently or can be composed as needed. For example your app can use Typography only or Color Palettes. Better practice would be compose all them into single Design System.

It also allows you to use any of these blocks with other third part frameworks. For example Spacing and Layout can be used any other third party frameworks.

Since it protocol oriented framework you can further extended any of section and customise it. Doric comes with few default implementations. See more for usage guide

Credits

Doric is influenced by various Design System guidelines and many stackoverflow posts.

Major source of inspiration Atomic Design

Brad Frost, author of Atomic Design : “comprehensive collection of the bits and pieces that make up your interface”.


License

Doric is released under the MIT license. See LICENSE for details.

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].