I generated an angular2 dart app with stagehand and it run as expected. Now I am trying to add a simple button from angular2-material-design to the page but not with any success. Only the button label is displayed - the button is not seen raised as expected. Below are the simple src
.dart
library angular2_app.app_component;
import 'package:angular2/angular2.dart';
import 'package:angular2_material/src/components/button/button.dart';
@Component( selector: 'my-app', templateUrl: 'app_component.html' )
class AppComponent {}
.html
<h1>My First Angular 2 App</h1>
<md-content>
<section layout = "row"
layout-sm = "column"
layout-align = "center center"
layout-wrap>
<md-button class = "md-raised">Button</md-button>
</section>
</md-content>
Here the raised button is not seen.
Any help is appreciated.