angular.dart.tutorial icon indicating copy to clipboard operation
angular.dart.tutorial copied to clipboard

AngularDart tutorial

Results 14 angular.dart.tutorial issues
Sort by recently updated
recently updated
newest added

We might want to license the content under some CC license. Looks like we just have an MIT license which might only apply to the code.

Starting in Chapter 03, you start importing di/di.dart into the project however there's no mention of why this import is added and it does not appear to be used in...

I cannot build the tutorial. From Chapter01 Is it broke, or is it me? pub get,.... [works] pub build Loading source assets... Loading di/module_transformer, initialize/build/loader_replacer, smoke/src/default_transformer and initialize transformLoading di/module_transformer,...

pattern for asynchronous methods. [](https://reviewable.io/reviews/angular/angular.dart.tutorial/141)

cla: yes

[](https://reviewable.io/reviews/angular/angular.dart.tutorial/134)

See related angular bug: https://github.com/angular/angular.dart/issues/1610

This seems to be the magic line to get it working: `factory(NgRoutingUsePushState, (_) => new NgRoutingUsePushState.value(false));` but the tutorial doesn't mention it, or I missed it.

I would like to suggest adding a chapter about injecting a service and a scope to components. These are important features needed by anything that is more than just an...

Using the arrayify formatter in the template instead of the _categories list will simplify the code: ``` html {{category.key}} ``` https://github.com/angular/angular.dart.tutorial/blob/master/Chapter_06/lib/component/search_recipe_component.html#L10 https://github.com/angular/angular.dart.tutorial/blob/master/Chapter_06/lib/component/search_recipe_component.dart#L20 Arrayify formatter: https://github.com/angular/angular.dart/commit/d2780f8bb849c62d995d939d00594ebe93428631

Suggest you update Angular's Hello World to take advantage of the Dart Editor's enhancements. e.g. choose more appropriate names for html and dart files other than index and main. In...

enhancement