Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Angular Material Overview
Search
Andrew Butler
May 13, 2015
Programming
73
0
Share
Angular Material Overview
Presented to NashJS in Nashville, TN on May 13, 2015
Andrew Butler
May 13, 2015
More Decks by Andrew Butler
See All by Andrew Butler
Cut Your Own Gems
abutler3
0
60
Other Decks in Programming
See All in Programming
L’IA au service des devs : Anatomie d'un assistant de Code Review
toham
0
160
Ruby and LLM Ecosystem 2nd
koic
1
1.4k
へんな働き方
yusukebe
6
2.9k
GoのDB アクセスにおける 「型安全」と「柔軟性」の両立 - Bob という選択肢
tak848
0
290
それはエンジニアリングの糧である:AI開発のためにAIのOSSを開発する現場より / It serves as fuel for engineering: insights from the field of developing open-source AI for AI development.
nrslib
1
730
PHPで TLSのプロトコルを実装してみる
higaki_program
0
630
[PHPerKaigi 2026]PHPerKaigi2025の企画CodeGolfが最高すぎて社内で内製して半年運営して得た内製と運営の知見
ikezoemakoto
0
310
実践ハーネスエンジニアリング #MOSHTech
kajitack
7
5.2k
Codex の「自走力」を高める
yorifuji
0
1.3k
ポーリング処理廃止によるイベント駆動アーキテクチャへの移行
seitarof
3
1.3k
AI Assistants for YourAngular Solutions @Angular Graz, March 2026
manfredsteyer
PRO
0
130
Smarter Angular mit Transformers.js & Prompt API
christianliebel
PRO
1
110
Featured
See All Featured
Have SEOs Ruined the Internet? - User Awareness of SEO in 2025
akashhashmi
0
300
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.6k
The browser strikes back
jonoalderson
0
860
The Limits of Empathy - UXLibs8
cassininazir
1
280
Amusing Abliteration
ianozsvald
0
150
Building Applications with DynamoDB
mza
96
7k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
9
1.2k
The Director’s Chair: Orchestrating AI for Truly Effective Learning
tmiket
1
140
Java REST API Framework Comparison - PWX 2021
mraible
34
9.2k
The agentic SEO stack - context over prompts
schlessera
0
720
Building Adaptive Systems
keathley
44
3k
SEOcharity - Dark patterns in SEO and UX: How to avoid them and build a more ethical web
sarafernandez
0
160
Transcript
Angular Material NashJS 2015 Angular Material Overview nathanleclaire.com
Angular Material NashJS 2015
Angular Material NashJS 2015
Angular Material NashJS 2015 Drew Butler github.com/abutler3 twitter.com/drew_butler
Angular Material NashJS 2015 Drew Butler github.com/abutler3 twitter.com/drew_butler
Angular Material NashJS 2015 Material Design Agenda
Angular Material NashJS 2015 Material Design Integration with AngularJS Agenda
Angular Material NashJS 2015 How to implement Integration with AngularJS
Material Design Agenda
Angular Material NashJS 2015 Material Design Integration with AngularJS How
to implement What to watch out for Agenda
Angular Material NashJS 2015 Material Design Integration with AngularJS How
to implement What to watch out for Agenda
Angular Material NashJS 2015 Material Design Create a visual language
that synthesizes classic principles of good design with the innovation and possibility of technology and science. - Google
Angular Material NashJS 2015 Material Design Develop a single underlying
system that allows for a unified experience across platforms and device sizes. - Google
Angular Material NashJS 2015 Material Design WAIT
Angular Material NashJS 2015 Material Design WAIT So, it’s Google’s
version of Bootstrap
Angular Material NashJS 2015 Material Design WAIT So, it’s Google’s
version of Bootstrap Right?
Angular Material NashJS 2015 Material Design Well, It makes your
web app responsive, while provide some default look and feel for your pages
Angular Material NashJS 2015 Material Design Oh So it is
like Bootstrap
Angular Material NashJS 2015 Material Design Oh So it is
like Bootstrap
Angular Material NashJS 2015 Material Design Kinda sorta
Angular Material NashJS 2015 gmail ========>
Angular Material NashJS 2015 google maps ========>
Angular Material NashJS 2015
Angular Material NashJS 2015 material uses flexbox (display: flex) vs
the standard bootstrap (display: inline, block, inline-block) Like Bootstrap…
Angular Material NashJS 2015 Material Design Integration with AngularJS How
to implement What to watch out for Agenda
None
http://material.angularjs.org
Angular Material NashJS 2015 Integration with AngularJS AngularJS DI Services
Modules Data Binding Standard Directives Animations Data-aware Components
Angular Material NashJS 2015 Integration with AngularJS AngularJS DI Services
Modules Data Binding Standard Directives Animations Data-aware Components Angular Material Design Themes Flexbox ARIA Support UX Effects UI Components AngularJS
Angular Material NashJS 2015 Integration with AngularJS
Angular Material NashJS 2015 Integration with AngularJS Two things to
note: version 1.3 and later
Angular Material NashJS 2015 Integration with AngularJS
Angular Material NashJS 2015 Material Design Integration with AngularJS How
to implement What to watch out for Agenda
Angular Material NashJS 2015 bower install angular- material How to
implement
Angular Material NashJS 2015 https://ajax.googleapis.com/ajax/libs/ angular_material/0.9.0/angular-material.min.js <script src="https://ajax.googleapis.com/ajax/libs/angularjs/ 1.3.15/angular.min.js"></script> <script
src="https://ajax.googleapis.com/ajax/libs/angularjs/ 1.3.15/angular-animate.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/ 1.3.15/angular-aria.min.js"></script> <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/ libs/angular_material/0.9.0/angular-material.min.css"> How to implement
Angular Material NashJS 2015 angular.module(‘FoodApp’, []); How to implement
Angular Material NashJS 2015 angular.module(‘FoodApp’, [‘ngMaterial’]); How to implement
Angular Material NashJS 2015 http://materialdesignblog.com/upcoming-material-design-css-library-a-twitter-bootstrap-killer/ How to implement
Angular Material NashJS 2015 How to implement
Angular Material NashJS 2015 How to implement
Angular Material NashJS 2015 How to implement
Angular Material NashJS 2015 How to implement
Angular Material NashJS 2015 How to implement
Angular Material NashJS 2015 Recipe App Demo How to implement
Angular Material NashJS 2015 How to implement
Angular Material NashJS 2015 How to implement
Angular Material NashJS 2015 Material Design Integration with AngularJS How
to implement What to watch out for Agenda
Angular Material NashJS 2015 What to watch out for still
in beta no legacy IE support (look into the new CSS based material design from Google) not recommended for production projects-yet
Angular Material NashJS 2015 Material Design Integration with AngularJS How
to implement What to watch out for Review
Angular Material NashJS 2015 https://github.com/angular/material
Angular Material NashJS 2015 Links to Slides and sample projects:
Find links here: @drew_butler Sample Project - http://bit.ly/md-recipes Slides - bit.ly/md-nashjs Sources: @louiswilbrink, material.angularjs.org, Build an Angular Material App - (https://youtu.be/Qi31oO5u33U)