All Projects → urish → angular2-material-build

urish / angular2-material-build

Licence: other
Material Design for Angular2

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Builds for Angular 2 Material Design module.

Sources: https://github.com/angular/angular/tree/master/modules/angular2_material

How to use + Example

To install, simply include angular2_material.dev.js and angular2_material.css in your application.

Code sample - shows how to use MdCheckbox:

import {Component, View, bootstrap} from 'angular2/angular2';
import {MdCheckbox} from 'angular2_material/material';

@Component({
    selector: 'my-component'
})
@View({
	template: `
		<md-checkbox>Please check me</md-checkbox>
	`,
	directives: [MdCheckbox]
})
class MyAppComponent {
	/* ... */
}

Online demo

Check out this demo on Plunker

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].