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
Fundamentos de AngularDart
Search
Esteban Dorado Roldan
March 18, 2014
Programming
0
54
Fundamentos de AngularDart
Seminario de AngularDart durante el Dart Flight School Granada
Esteban Dorado Roldan
March 18, 2014
Tweet
Share
More Decks by Esteban Dorado Roldan
See All by Esteban Dorado Roldan
Codemotion Spain Meetup -Microservices: gRPC vs Rest
mresti
0
230
PyConES2018: Python & gRPC, el conquistador de microservicios
mresti
0
440
Microservices: grpc vs rest
mresti
0
570
T3chFest 2018: Crea una API REST con Go
mresti
0
94
Build REST API with Golang
mresti
0
140
Firebase aventures - cloud based real time database
mresti
0
59
Material Design in Android
mresti
0
100
Android Wear
mresti
0
140
Material Design in Android
mresti
0
220
Other Decks in Programming
See All in Programming
バックエンドのためのアプリ内課金入門 (サブスク編)
qnighy
8
1.7k
2024年のWebフロントエンドのふりかえりと2025年
sakito
1
230
Introduction to kotlinx.rpc
arawn
0
630
Rails アプリ地図考 Flush Cut
makicamel
1
110
プログラミング言語学習のススメ / why-do-i-learn-programming-language
yashi8484
0
120
CNCF Project の作者が考えている OSS の運営
utam0k
5
690
富山発の個人開発サービスで日本中の学校の業務を改善した話
krpk1900
4
370
『GO』アプリ データ基盤のログ収集システムコスト削減
mot_techtalk
0
110
2024年のkintone API振り返りと2025年 / kintone API look back in 2024
tasshi
0
210
技術を根付かせる / How to make technology take root
kubode
1
240
Multi Step Form, Decentralized Autonomous Organization
pumpkiinbell
1
660
Kubernetes History Inspector(KHI)を触ってみた
bells17
0
200
Featured
See All Featured
GitHub's CSS Performance
jonrohan
1030
460k
Building a Modern Day E-commerce SEO Strategy
aleyda
38
7.1k
Building Flexible Design Systems
yeseniaperezcruz
328
38k
The MySQL Ecosystem @ GitHub 2015
samlambert
250
12k
Navigating Team Friction
lara
183
15k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
20
2.4k
Embracing the Ebb and Flow
colly
84
4.6k
Speed Design
sergeychernyshev
25
780
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
232
17k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
175
51k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
160
15k
The Cult of Friendly URLs
andyhume
78
6.2k
Transcript
Esteban Dorado | March 2014 #DartFlyGRX #DartFly
Welcome to Angular • An open-source Dart framework, maintained by
Google • Assists with running single-page applications (SPA) • The library reads in HTML that contains additional custom tag attributes • Exists in 2 flavors: AngularJS & AngularDart
• AngularDart API are class based • Same great framework
but as a Dart Dialect • The framework uses injection by type instead of injection by name.
Angular Principles Boilerplate D.R.Y. Testability Structure
Manages Notifies Observes Controller (Dart Objects) View (DOM) RAM Model
(Dart Objects) <div> <span> <ul> <li> Structure: Model-View-Controller
class Person { String name; } <div person> Hi, {{ctrl.person.name}}
</div> @NgController( selector: '[person]', publishAs: 'ctrl' ) class Controller { Person person = new Person(); Controller() { person.name = 'Bob'; } } Model: View: Controller: (demo controller)
Structure project Example
Code time!
More Info Tutorial: https://angulardart.org/tutorial/ API info: https://docs.angulardart.org/ Your favorite location...