SlideShare une entreprise Scribd logo
1  sur  46
Télécharger pour lire hors ligne
A developer view on Google’s
Material Design
- Manikanta Garikipati
Why do we need it?
What is Material Design?
New Patterns
How do i start?
Agenda
Why?
Material Design
Goals
• Visual design language that synthesises classic
principles of good design
• Unified experience across platforms and different
device sizes
• Provide guidelines in order to create appealing
Android applications
Material Principles
Material is a metaphor
It is the unifying theory of a
rationalised space and a system of
motion.
Yet technologically advanced and
open to imagination and magic.
Bold, graphic, intentional
The foundational elements of print-
based design – typography, grids,
space, scale, colour, and use of
imagery – guide visual treatments.
Motion provides meaning
Motion respects and reinforces the
user as the prime mover. Primary
user actions are inflection points
that initiate motion, transforming
the whole design.
Elevation
Layering
Elevation
res/layout/fragment_sample.xml
<ImageView android:id="@+id/my_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:elevation="5dp"/>
SampleFragment.java
view.animate().translationZ(5).start();
Cards (Only if you need them)
res/layout/foo_card.xml
<LinearLayout xmlns:android=""
xmlns:tools="http://schemas.android.com/tools"
xmlns:card_view="http://schemas.android.com/apk/res-auto">
<android.support.v7.widget.CardView
android:id="@+id/card_view"
android:layout_gravity="center"
android:layout_width="200dp"
android:layout_height="200dp"
card_view:cardCornerRadius="4dp">
</android.support.v7.widget.CardView>
</LinearLayout>
Color Palette
Primary and Accent Colour
<style name="AppTheme"
parent=“android:Theme.Material.Light.DarkActionBar”>
<item name="android:colorPrimary">@color/primary</item>
<item name="android:colorAccent">@color/accent</item>
<item name=“android:colorPrimaryDark">@color/primary_dark</
item>
</style>
res/layout-v21/theme.xml
SDK 21 and above
<style name="AppTheme"
parent=“Theme.AppCompat.Light.DarkActionBar >
<item name="android:colorPrimary">@color/primary</item>
<item name="android:colorAccent">@color/accent</item>
<item name=“android:colorPrimaryDark">@color/primary_dark</
item>
</style>
res/layout/theme.xml
SDK 7 and above
Holo to material
Holo to material
Holo to material
Holo to material
Toolbar
Toolbar in Material
MainActivity.java
Toolbar toolbar = (Toolbar)
findViewById(R.id.my_awesome_toolbar);
setActionBar(toolbar);
res/layout/toolbar.xml
<Toolbar
android:id="@+id/my_awesome_toolbar"
android:layout_height="wrap_content"
android:layout_width=“match_parent"
android:minHeight="?android/actionBarSize"
android:background="?android/colorPrimary"/>
Toolbar in AppCompat
MainActivity.java
Toolbar toolbar = (Toolbar)
findViewById(R.id.my_awesome_toolbar);
setSupportActionBar(toolbar);
res/layout/toolbar.xml
<android.support.v7.widget.Toolbar
android:id="@+id/my_awesome_toolbar"
android:layout_height="wrap_content"
android:layout_width=“match_parent"
android:minHeight="?android/actionBarSize"
android:background="?android/colorPrimary"/>
Navigation Drawer
Touch Feedback
Reveal effect
MyActivity.java
Animator anim =
ViewAnimationUtils.
createCircularReveal(
myView,
centerX,
centerY,
startRadius,
finalRadius);
anim.start();
final View myView = findViewById(R.id.my_view);
Animator anim =
ViewAnimationUtils.createCircularReveal(myView,
cx,
cy,
initialRadius,
0);
anim.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
super.onAnimationEnd(animation);
myView.setVisibility(View.INVISIBLE);
} });
MyActivity.java
Vector Drawables
res/layout/fragment_heart.xml
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/heart"/>
<vector xmlns:android=“...”
android:height="256dp"
android:width="256dp"
android:viewportWidth="32"
android:viewportHeight="32">
<path
android:fillColor="@color/orange"
android:pathData="M20.5,9.5
c-1.955,0,-3.83,1.268,-4.5,3
c-0.67,-1.732,-2.547,-3,-4.5,-3
C8.957,9.5,7,11.432,7,14
c0,3.53,3.793,6.257,9,11.5
c5.207,-5.242,9,-7.97,9,-11.5
C25,11.432,23.043,9.5,20.5,9.5z" />
</vector>
res/drawable/heart.xml
Navigation Drawer
Toolbar
Iconography
Key lines
Typography
Loading Activity
No Detail is too small
No Detail is too small
How to Start
Learn the theory
Priorities
Iterate, and do it fast
Thank You!
Questions?
Further Reading
• http://geekmk.com
• https://www.google.com/design/spec/material-design/introduction.html
References
• Google material design Guidelines
• Novodo

Contenu connexe

En vedette

Yorkshire Tea – Greatest Tea Challenge
Yorkshire Tea – Greatest Tea Challenge Yorkshire Tea – Greatest Tea Challenge
Yorkshire Tea – Greatest Tea Challenge Newsworks
 
ARQUITECTURA Y URBANISMO EN EL MUNDO AMERICANO ANTES DE LA CONQUISTA
ARQUITECTURA Y URBANISMO EN EL MUNDO AMERICANO ANTES DE LA CONQUISTAARQUITECTURA Y URBANISMO EN EL MUNDO AMERICANO ANTES DE LA CONQUISTA
ARQUITECTURA Y URBANISMO EN EL MUNDO AMERICANO ANTES DE LA CONQUISTAstephannie nava
 
Local SEO - Don't Risk Your Business
Local SEO - Don't Risk Your BusinessLocal SEO - Don't Risk Your Business
Local SEO - Don't Risk Your BusinessGreg Gifford
 
Social Media for Lawyers : Networking Through the Internet
Social Media for Lawyers : Networking Through the InternetSocial Media for Lawyers : Networking Through the Internet
Social Media for Lawyers : Networking Through the InternetKevin O'Keefe
 
Síntesis Amoris Laetitia (la alegría del amor)
Síntesis Amoris Laetitia (la alegría del amor)Síntesis Amoris Laetitia (la alegría del amor)
Síntesis Amoris Laetitia (la alegría del amor)Diocesis Tlaxcala
 
Colònies i casals d'estiu de la Fundació Pere Tarrés 2016
Colònies i casals d'estiu de la Fundació Pere Tarrés 2016Colònies i casals d'estiu de la Fundació Pere Tarrés 2016
Colònies i casals d'estiu de la Fundació Pere Tarrés 2016Fundació Pere Tarrés
 
Cutting TV Hurts Sales
Cutting TV Hurts SalesCutting TV Hurts Sales
Cutting TV Hurts SalesSmuckles
 

En vedette (7)

Yorkshire Tea – Greatest Tea Challenge
Yorkshire Tea – Greatest Tea Challenge Yorkshire Tea – Greatest Tea Challenge
Yorkshire Tea – Greatest Tea Challenge
 
ARQUITECTURA Y URBANISMO EN EL MUNDO AMERICANO ANTES DE LA CONQUISTA
ARQUITECTURA Y URBANISMO EN EL MUNDO AMERICANO ANTES DE LA CONQUISTAARQUITECTURA Y URBANISMO EN EL MUNDO AMERICANO ANTES DE LA CONQUISTA
ARQUITECTURA Y URBANISMO EN EL MUNDO AMERICANO ANTES DE LA CONQUISTA
 
Local SEO - Don't Risk Your Business
Local SEO - Don't Risk Your BusinessLocal SEO - Don't Risk Your Business
Local SEO - Don't Risk Your Business
 
Social Media for Lawyers : Networking Through the Internet
Social Media for Lawyers : Networking Through the InternetSocial Media for Lawyers : Networking Through the Internet
Social Media for Lawyers : Networking Through the Internet
 
Síntesis Amoris Laetitia (la alegría del amor)
Síntesis Amoris Laetitia (la alegría del amor)Síntesis Amoris Laetitia (la alegría del amor)
Síntesis Amoris Laetitia (la alegría del amor)
 
Colònies i casals d'estiu de la Fundació Pere Tarrés 2016
Colònies i casals d'estiu de la Fundació Pere Tarrés 2016Colònies i casals d'estiu de la Fundació Pere Tarrés 2016
Colònies i casals d'estiu de la Fundació Pere Tarrés 2016
 
Cutting TV Hurts Sales
Cutting TV Hurts SalesCutting TV Hurts Sales
Cutting TV Hurts Sales
 

Similaire à A developers view on Material Design

Design Learnings
Design LearningsDesign Learnings
Design LearningsQuikr
 
CV_Jahnavee Chitte (1)
CV_Jahnavee Chitte (1)CV_Jahnavee Chitte (1)
CV_Jahnavee Chitte (1)jahnaveec
 
Jesse Cohen's Portfolio
Jesse Cohen's PortfolioJesse Cohen's Portfolio
Jesse Cohen's PortfolioJesse Cohen
 
Mobile Design at Gilt
Mobile Design at GiltMobile Design at Gilt
Mobile Design at GiltDavid Park
 
Fundamentals of Web Design - Professional Development Workshop
Fundamentals of Web Design - Professional Development Workshop Fundamentals of Web Design - Professional Development Workshop
Fundamentals of Web Design - Professional Development Workshop Brenna Mickey
 
Fusionops sr ux designer 2 2017
Fusionops sr ux designer 2 2017Fusionops sr ux designer 2 2017
Fusionops sr ux designer 2 2017Rich Goldstein
 
Fusionops UX position (richard.goldstein@fusionops.com
Fusionops UX position (richard.goldstein@fusionops.comFusionops UX position (richard.goldstein@fusionops.com
Fusionops UX position (richard.goldstein@fusionops.comRich Goldstein
 
Resume_Samar
Resume_SamarResume_Samar
Resume_SamarSamar Pal
 
Requirements Definitions Of The Geospatial Web
Requirements Definitions Of The Geospatial WebRequirements Definitions Of The Geospatial Web
Requirements Definitions Of The Geospatial WebMichael Maclennan
 
2230 Fomina Natalia - Memo Ticket - DES509-Magee j-crit-02
2230  Fomina Natalia - Memo Ticket - DES509-Magee j-crit-022230  Fomina Natalia - Memo Ticket - DES509-Magee j-crit-02
2230 Fomina Natalia - Memo Ticket - DES509-Magee j-crit-02Natalia Fomina
 
Designing For Interaction
Designing For Interaction Designing For Interaction
Designing For Interaction Chris Bernard
 
Designing for Interaction, Chris Bernard
Designing for Interaction, Chris BernardDesigning for Interaction, Chris Bernard
Designing for Interaction, Chris BernardBoris Loukanov
 
Joel Baskin UX Design and Artifacts
Joel Baskin UX Design and ArtifactsJoel Baskin UX Design and Artifacts
Joel Baskin UX Design and ArtifactsJoel Baskin
 
User centered design process - Measurefest Presentation
User centered design process - Measurefest PresentationUser centered design process - Measurefest Presentation
User centered design process - Measurefest Presentationflashbender
 

Similaire à A developers view on Material Design (20)

Design Learnings
Design LearningsDesign Learnings
Design Learnings
 
CV_Jahnavee Chitte (1)
CV_Jahnavee Chitte (1)CV_Jahnavee Chitte (1)
CV_Jahnavee Chitte (1)
 
Jesse Cohen's Portfolio
Jesse Cohen's PortfolioJesse Cohen's Portfolio
Jesse Cohen's Portfolio
 
Mobile Design at Gilt
Mobile Design at GiltMobile Design at Gilt
Mobile Design at Gilt
 
Fundamentals of Web Design - Professional Development Workshop
Fundamentals of Web Design - Professional Development Workshop Fundamentals of Web Design - Professional Development Workshop
Fundamentals of Web Design - Professional Development Workshop
 
MattGillespieResume
MattGillespieResumeMattGillespieResume
MattGillespieResume
 
Fusionops sr ux designer 2 2017
Fusionops sr ux designer 2 2017Fusionops sr ux designer 2 2017
Fusionops sr ux designer 2 2017
 
Fusionops UX position (richard.goldstein@fusionops.com
Fusionops UX position (richard.goldstein@fusionops.comFusionops UX position (richard.goldstein@fusionops.com
Fusionops UX position (richard.goldstein@fusionops.com
 
Resume_Samar
Resume_SamarResume_Samar
Resume_Samar
 
Ekansh Gupta CV
Ekansh Gupta CVEkansh Gupta CV
Ekansh Gupta CV
 
Requirements Definitions Of The Geospatial Web
Requirements Definitions Of The Geospatial WebRequirements Definitions Of The Geospatial Web
Requirements Definitions Of The Geospatial Web
 
Resume
ResumeResume
Resume
 
2230 Fomina Natalia - Memo Ticket - DES509-Magee j-crit-02
2230  Fomina Natalia - Memo Ticket - DES509-Magee j-crit-022230  Fomina Natalia - Memo Ticket - DES509-Magee j-crit-02
2230 Fomina Natalia - Memo Ticket - DES509-Magee j-crit-02
 
Designing For Interaction
Designing For Interaction Designing For Interaction
Designing For Interaction
 
Designing for Interaction, Chris Bernard
Designing for Interaction, Chris BernardDesigning for Interaction, Chris Bernard
Designing for Interaction, Chris Bernard
 
Joel Baskin UX Design and Artifacts
Joel Baskin UX Design and ArtifactsJoel Baskin UX Design and Artifacts
Joel Baskin UX Design and Artifacts
 
Sourabh ui
Sourabh uiSourabh ui
Sourabh ui
 
Sourabh ui
Sourabh uiSourabh ui
Sourabh ui
 
User centered design process - Measurefest Presentation
User centered design process - Measurefest PresentationUser centered design process - Measurefest Presentation
User centered design process - Measurefest Presentation
 
John Sorflaten Usability Resume
John Sorflaten Usability ResumeJohn Sorflaten Usability Resume
John Sorflaten Usability Resume
 

Dernier

General Knowledge Quiz Game C++ CODE.pptx
General Knowledge Quiz Game C++ CODE.pptxGeneral Knowledge Quiz Game C++ CODE.pptx
General Knowledge Quiz Game C++ CODE.pptxmarckustrevion
 
Untitled presedddddddddddddddddntation (1).pptx
Untitled presedddddddddddddddddntation (1).pptxUntitled presedddddddddddddddddntation (1).pptx
Untitled presedddddddddddddddddntation (1).pptxmapanig881
 
Chapter 6(1)system devolopment life .ppt
Chapter 6(1)system devolopment life .pptChapter 6(1)system devolopment life .ppt
Chapter 6(1)system devolopment life .pptDoaaRezk5
 
办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书
办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书
办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书zdzoqco
 
Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Rndexperts
 
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证nhjeo1gg
 
How to Empower the future of UX Design with Gen AI
How to Empower the future of UX Design with Gen AIHow to Empower the future of UX Design with Gen AI
How to Empower the future of UX Design with Gen AIyuj
 
办理(UC毕业证书)查尔斯顿大学毕业证成绩单原版一比一
办理(UC毕业证书)查尔斯顿大学毕业证成绩单原版一比一办理(UC毕业证书)查尔斯顿大学毕业证成绩单原版一比一
办理(UC毕业证书)查尔斯顿大学毕业证成绩单原版一比一z xss
 
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,Aginakm1
 
Apresentação Clamo Cristo -letra música Matheus Rizzo
Apresentação Clamo Cristo -letra música Matheus RizzoApresentação Clamo Cristo -letra música Matheus Rizzo
Apresentação Clamo Cristo -letra música Matheus RizzoCarolTelles6
 
Design principles on typography in design
Design principles on typography in designDesign principles on typography in design
Design principles on typography in designnooreen17
 
group_15_empirya_p1projectIndustrial.pdf
group_15_empirya_p1projectIndustrial.pdfgroup_15_empirya_p1projectIndustrial.pdf
group_15_empirya_p1projectIndustrial.pdfneelspinoy
 
cda.pptx critical discourse analysis ppt
cda.pptx critical discourse analysis pptcda.pptx critical discourse analysis ppt
cda.pptx critical discourse analysis pptMaryamAfzal41
 
Dubai Calls Girl Tapes O525547819 Real Tapes Escort Services Dubai
Dubai Calls Girl Tapes O525547819 Real Tapes Escort Services DubaiDubai Calls Girl Tapes O525547819 Real Tapes Escort Services Dubai
Dubai Calls Girl Tapes O525547819 Real Tapes Escort Services Dubaikojalkojal131
 
Design and Managing Service in the field of tourism and hospitality industry
Design and Managing Service in the field of tourism and hospitality industryDesign and Managing Service in the field of tourism and hospitality industry
Design and Managing Service in the field of tourism and hospitality industryrioverosanniejoy
 
原版美国亚利桑那州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
原版美国亚利桑那州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree原版美国亚利桑那州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
原版美国亚利桑那州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degreeyuu sss
 
Unveiling the Future: Columbus, Ohio Condominiums Through the Lens of 3D Arch...
Unveiling the Future: Columbus, Ohio Condominiums Through the Lens of 3D Arch...Unveiling the Future: Columbus, Ohio Condominiums Through the Lens of 3D Arch...
Unveiling the Future: Columbus, Ohio Condominiums Through the Lens of 3D Arch...Yantram Animation Studio Corporation
 
Business research proposal mcdo.pptxBusiness research proposal mcdo.pptxBusin...
Business research proposal mcdo.pptxBusiness research proposal mcdo.pptxBusin...Business research proposal mcdo.pptxBusiness research proposal mcdo.pptxBusin...
Business research proposal mcdo.pptxBusiness research proposal mcdo.pptxBusin...mrchrns005
 
Passbook project document_april_21__.pdf
Passbook project document_april_21__.pdfPassbook project document_april_21__.pdf
Passbook project document_april_21__.pdfvaibhavkanaujia
 

Dernier (20)

General Knowledge Quiz Game C++ CODE.pptx
General Knowledge Quiz Game C++ CODE.pptxGeneral Knowledge Quiz Game C++ CODE.pptx
General Knowledge Quiz Game C++ CODE.pptx
 
Untitled presedddddddddddddddddntation (1).pptx
Untitled presedddddddddddddddddntation (1).pptxUntitled presedddddddddddddddddntation (1).pptx
Untitled presedddddddddddddddddntation (1).pptx
 
Chapter 6(1)system devolopment life .ppt
Chapter 6(1)system devolopment life .pptChapter 6(1)system devolopment life .ppt
Chapter 6(1)system devolopment life .ppt
 
办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书
办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书
办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书
 
Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025
 
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
 
How to Empower the future of UX Design with Gen AI
How to Empower the future of UX Design with Gen AIHow to Empower the future of UX Design with Gen AI
How to Empower the future of UX Design with Gen AI
 
办理(UC毕业证书)查尔斯顿大学毕业证成绩单原版一比一
办理(UC毕业证书)查尔斯顿大学毕业证成绩单原版一比一办理(UC毕业证书)查尔斯顿大学毕业证成绩单原版一比一
办理(UC毕业证书)查尔斯顿大学毕业证成绩单原版一比一
 
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
 
Apresentação Clamo Cristo -letra música Matheus Rizzo
Apresentação Clamo Cristo -letra música Matheus RizzoApresentação Clamo Cristo -letra música Matheus Rizzo
Apresentação Clamo Cristo -letra música Matheus Rizzo
 
Design principles on typography in design
Design principles on typography in designDesign principles on typography in design
Design principles on typography in design
 
group_15_empirya_p1projectIndustrial.pdf
group_15_empirya_p1projectIndustrial.pdfgroup_15_empirya_p1projectIndustrial.pdf
group_15_empirya_p1projectIndustrial.pdf
 
cda.pptx critical discourse analysis ppt
cda.pptx critical discourse analysis pptcda.pptx critical discourse analysis ppt
cda.pptx critical discourse analysis ppt
 
Dubai Calls Girl Tapes O525547819 Real Tapes Escort Services Dubai
Dubai Calls Girl Tapes O525547819 Real Tapes Escort Services DubaiDubai Calls Girl Tapes O525547819 Real Tapes Escort Services Dubai
Dubai Calls Girl Tapes O525547819 Real Tapes Escort Services Dubai
 
Call Girls in Pratap Nagar, 9953056974 Escort Service
Call Girls in Pratap Nagar,  9953056974 Escort ServiceCall Girls in Pratap Nagar,  9953056974 Escort Service
Call Girls in Pratap Nagar, 9953056974 Escort Service
 
Design and Managing Service in the field of tourism and hospitality industry
Design and Managing Service in the field of tourism and hospitality industryDesign and Managing Service in the field of tourism and hospitality industry
Design and Managing Service in the field of tourism and hospitality industry
 
原版美国亚利桑那州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
原版美国亚利桑那州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree原版美国亚利桑那州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
原版美国亚利桑那州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
 
Unveiling the Future: Columbus, Ohio Condominiums Through the Lens of 3D Arch...
Unveiling the Future: Columbus, Ohio Condominiums Through the Lens of 3D Arch...Unveiling the Future: Columbus, Ohio Condominiums Through the Lens of 3D Arch...
Unveiling the Future: Columbus, Ohio Condominiums Through the Lens of 3D Arch...
 
Business research proposal mcdo.pptxBusiness research proposal mcdo.pptxBusin...
Business research proposal mcdo.pptxBusiness research proposal mcdo.pptxBusin...Business research proposal mcdo.pptxBusiness research proposal mcdo.pptxBusin...
Business research proposal mcdo.pptxBusiness research proposal mcdo.pptxBusin...
 
Passbook project document_april_21__.pdf
Passbook project document_april_21__.pdfPassbook project document_april_21__.pdf
Passbook project document_april_21__.pdf
 

A developers view on Material Design