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, Chris Bernard
Designing for Interaction, Chris BernardDesigning for Interaction, Chris Bernard
Designing for Interaction, Chris BernardBoris Loukanov
 
Designing For Interaction
Designing For Interaction Designing For Interaction
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 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, Chris Bernard
Designing for Interaction, Chris BernardDesigning for Interaction, Chris Bernard
Designing for Interaction, Chris Bernard
 
Designing For Interaction
Designing For Interaction Designing For Interaction
Designing For Interaction
 
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

VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts ServiceVVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Servicearoranaina404
 
Fashion trends before and after covid.pptx
Fashion trends before and after covid.pptxFashion trends before and after covid.pptx
Fashion trends before and after covid.pptxVanshNarang19
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation decktbatkhuu1
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Delhi Call girls
 
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130Suhani Kapoor
 
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130Suhani Kapoor
 
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfChapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfParomita Roy
 
The Art of Batik, template ppt aesthetic
The Art of Batik, template ppt aestheticThe Art of Batik, template ppt aesthetic
The Art of Batik, template ppt aestheticTiaFebriani
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxmirandajeremy200221
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Douxkojalkojal131
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...home
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxjanettecruzeiro1
 
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...babafaisel
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...Call Girls in Nagpur High Profile
 

Dernier (20)

B. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdfB. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdf
 
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
 
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts ServiceVVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
 
Fashion trends before and after covid.pptx
Fashion trends before and after covid.pptxFashion trends before and after covid.pptx
Fashion trends before and after covid.pptx
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
 
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
 
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
 
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
 
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfChapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
 
The Art of Batik, template ppt aesthetic
The Art of Batik, template ppt aestheticThe Art of Batik, template ppt aesthetic
The Art of Batik, template ppt aesthetic
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptx
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance VVIP 🍎 SER...
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance  VVIP 🍎 SER...Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance  VVIP 🍎 SER...
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance VVIP 🍎 SER...
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptx
 
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
 

A developers view on Material Design