Salesforce Design System for Native Apps

49
Lightning Design System for Native Apps Bruno Fonzi, Ivan Bogdanov & Doug Lowder Salesforce

Transcript of Salesforce Design System for Native Apps

Page 1: Salesforce Design System for Native Apps

Lightning Design Systemfor Native AppsBruno Fonzi, Ivan Bogdanov & Doug Lowder Salesforce

Page 2: Salesforce Design System for Native Apps

Safe HarborSafe harbor statement under the Private Securities Litigation Reform Act of 1995:

This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services.

The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site.

Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.

Page 3: Salesforce Design System for Native Apps

Bruno FonziDirector of UX Engineering

+ Geek at heart!

@brunofonzi

Page 4: Salesforce Design System for Native Apps

Ivan BogdanovPrincipal UX Engineer

+ Astronaut at night!

@_mad_potato

Page 5: Salesforce Design System for Native Apps

Doug LowderEngineer, Sales Cloud (Notes)

+ Musician at Irish pubs!

@douglowder

Page 6: Salesforce Design System for Native Apps

Our touch points

• How we work at Salesforce: Design/Engineering workflow

• Cross Platform development challenges

• Introduction to Lightning Design System

• Tools and libraries

• Demo: Sample Apps

• What’s next? The future

• Q&A

• Give away

Page 7: Salesforce Design System for Native Apps

UXCREATES & DEFINES DESIGN SYSTEM

STYLE GUIDE

CSS FRAMEWORK

DESIGN TOKENS

ASSETS

TOOLS

DEVCONSUMES

HTML/CSS

ANDROID

IOS

WIN8

DESIGN

PROTOTYPE

USER RESEARCH

(REPEAT)

Page 8: Salesforce Design System for Native Apps

Support Multiple Platforms & Devices

Page 9: Salesforce Design System for Native Apps

Redlines

Page 10: Salesforce Design System for Native Apps

Redlines

Page 11: Salesforce Design System for Native Apps

Better Designer + Developer Communication

Page 12: Salesforce Design System for Native Apps

Design PrinciplesIntentionally ordered by priority

Page 13: Salesforce Design System for Native Apps

clarityEliminate ambiguity. Enable people to see, understand, and act with confidence.

Page 14: Salesforce Design System for Native Apps

efficiencyStreamline and optimize workflows. Intelligently anticipate needs to help people work better, smarter, and faster.

Page 15: Salesforce Design System for Native Apps

consistencyCreate familiarity and strengthen intuition by applying the same solution to the same problem.

Page 16: Salesforce Design System for Native Apps

beautyDemonstrate respect for people’s time and attention through thoughtful and elegant craftsmanship.

Page 17: Salesforce Design System for Native Apps

Lightning Experience

Page 18: Salesforce Design System for Native Apps

Design TokensThe basic atoms of the Design System

Page 19: Salesforce Design System for Native Apps

Types of Design Tokens

Font Families, Sizes, & Weights

Line Heights

Colors for Background, Text, & Borders

Shadows

Spacing & Sizing

Animation Durations

Page 20: Salesforce Design System for Native Apps

Theo

Open source tool by Salesforce UX to generate Design Tokens

Page 21: Salesforce Design System for Native Apps

Theo JSON file converts to:

Lightning

Sass

Less

Stylus

JSON (iOS)

XML (Android)

Style Guide

Color Swatches (Photoshop & Sketch)

Page 22: Salesforce Design System for Native Apps

Theo

{

"name": "COLOR_TEXT",

"value": "#000",

"category": "text-color",

"comment": "Body text"

}

Lightning

<!-- Body text color -->

<aura:var name="colorText" value="#000" />

Sass

// Body text

$color-text: #000;

Page 23: Salesforce Design System for Native Apps

No more hard-coded values

Page 24: Salesforce Design System for Native Apps

Icons and FontAssets

Page 25: Salesforce Design System for Native Apps

Icons

Page 26: Salesforce Design System for Native Apps

Font

Page 27: Salesforce Design System for Native Apps

Lightning Design System

salesforce.com/designsystem

• Guidelines and design patterns

• Consistency with the Salesforce UI

• HTML components, CSS

• Assets: Icons and font

• Framework-agnostic

• Tools

• Open Source! github.com/salesforce-ux

Page 28: Salesforce Design System for Native Apps

CocoaPods: Dependency manager

cocoapods.org/pods/DesignSystem

Page 29: Salesforce Design System for Native Apps

CocoaPods: InstallCocoaPods :Install cocoapods:

Page 30: Salesforce Design System for Native Apps

CocoaPods: Create or update Podfile text fileCocoaPods :Create or update Podfile text file:

Page 31: Salesforce Design System for Native Apps

CocoaPods: run pod install command

CocoaPods :run pod install command:

Page 32: Salesforce Design System for Native Apps

ZERO configuration

• no need to modify plist• automatically loaded fonts• icons• helper classes

Page 33: Salesforce Design System for Native Apps

Under the hood: Compiled static classes with enumUnder the hood:compiled static classes with enums:

Page 34: Salesforce Design System for Native Apps

Under the hood: UIFont, UIColor, UIImage CategoriesUnder the hood: UIFont, UIColor, UIImage Categories

Page 35: Salesforce Design System for Native Apps

XCode Auto CompleteXCode Auto Complete:

Page 36: Salesforce Design System for Native Apps

Sample Appgithub.com/salesforce-ux/design-system-ios/Sample App:github.com/salesforce-ux/design-system-ios/Demo

Page 37: Salesforce Design System for Native Apps

Demo

Page 38: Salesforce Design System for Native Apps

SALESFORCE NOTES DEMO APP

Limited demo showing Notes (new feature in Winter ‘16)

● List of recent notes● Can edit title and content● Works offline● High performance list

view using ComponentKit● Sync and offline storage

uses Salesforce Mobile SDK

● UI elements (fonts, icons, styles) from SF Design System

Page 39: Salesforce Design System for Native Apps

Notes Demo App overviewRoot view

Collection view

Component Data Source Components

Data Manager

Salesforce Mobile SDK (SmartStore, SmartSync, REST API)

Detail/edit view

SF Design System

SF Design System

SF Design System

ComponentKit

ComponentKit + POPAnimation

Page 40: Salesforce Design System for Native Apps

ComponentKithttp://componentkit.org

• An Objective-C++ view framework for iOS • Heavily inspired by React• Functional, declarative approach to building UI • Built to power Facebook's News Feed• Now used throughout the Facebook app

Page 41: Salesforce Design System for Native Apps

More Demo!

Page 42: Salesforce Design System for Native Apps

What is Next?Tinkering of…

• Android library open-source• Windows 8 support• Components for iOS and Android (and web)• Swift integration• React Native integration

Page 43: Salesforce Design System for Native Apps

Documentation and APIslightningdesignsystem.com/native/ios

Page 44: Salesforce Design System for Native Apps

GitHub repo and sample codegithub.com/salesforce-ux/design-system-ios

Page 45: Salesforce Design System for Native Apps

salesforce.com/designsystem

github.com/salesforce-ux

Question… little give away...

Page 46: Salesforce Design System for Native Apps

salesforce.com/designsystem

github.com/salesforce-ux

Q&A

Page 47: Salesforce Design System for Native Apps

Design HQCome to the 2nd floor of Moscone West to chat

with some of the world’s best designers, researchers, and UX engineers.

Page 48: Salesforce Design System for Native Apps

Share Your Feedback, and Win a GoPro!

3 Earn a GoPro prize entry for each completed survey

Tap the bell to take a survey 2 Enroll in a session 1

Page 49: Salesforce Design System for Native Apps

Thank you