Nicholas Shahan

Results 111 comments of Nicholas Shahan

@TedSander and I discussed removing the reorder list since it isn't a fully featured component. In the end we decided to leave it in but mark in the documentation that...

What is your process for choosing components to use in your application? I've been wondering what I can do to make this process more clear. The most basic response is,...

You could provide your own custom z-indexer to get this behavior today.

Do you need to recreate the list of heros every time? I tried moving that code to `ngOnInit` and that works: ``` class AppComponent implements OnInit { List heroes; Hero...

Are you saying that the tab will not change unless you click and release over a tab? That behavior seems pretty common in UI elements. Buttons usually don't trigger unless...

Ahh ok! I see what you are describing now. Sorry about the confusion. Thanks for the report.

This exact text snippet is in the example application and it is working there. https://github.com/dart-lang/angular_components_example/blob/master/lib/src/app_layout_demo/app_layout_demo.scss#L22-L25 Are you having a problem building? Does your application load? Maybe the specificity on your...

> I open lib/app_components.css and add the line: > @import 'package:angular_components/css/material/material'; Just to double check, are you editing `lib/app_components.css` or `lib/app_components.scss`? Those imports will only work in `.scss` files. It...

1) Where is your `.scss` file located with respect to the `pubspec.yaml` file you posted? 2) What did you run to get that error?

The "Dart" style package imports like the one you are using are not supported by sass. They are custom imports that are supported in the Dart build ecosystem and only...