I am not able to pass list to polymer element from angular control
polymer element
hellowworld.html
<polymer-element name = "hello-world" attributes ="message list">
<template>
{{message}}
<template repeat ="{{item in list}}">
{{item}}
</template>
</template>
<script type="application/dart" src="helloworld.dart"></script>
</polymer-element>
helloworld.dart
@CustomTag("hello-world")
class HelloWorld extends PolymerElement {
@published String message;
@published List<String> list;
Angular control
@Controller(selector :"[app-ctrl]", publishAs : "ctrl")
class AppController {
String message = "polymer angular rocks";
List<Person> _persons = [];
List<String> list = ["dsdf","dsf"];
Angular polymer data binding
<div app-ctrl>
<hello-world message ="{{ctrl.message}}" list ="{{ctrl.list}}"></hello-world>
</div>
message is displaying fine on browser,but not list data.
shadow root :
Edit :
Now i am using node bind module and [[]] for binding ,still can't pass List object
<div app-ctrl>
<hello-world message ="[[ctrl.message]]" list ="[[ctrl.list]]"></hello-world>
</div>
Error :
Exception: type 'String' is not a subtype of type 'List' of 'value'. (dart-polymer-elements-with-angular/lib/elements/helloworld/helloworld.dart:10) interpolation: "ng-binding"