My question is: How to observe changes on simple variable like String or num? I know that you can easy observe object like this:
observe(t, (e) => print ("Value changed"));
but How to do this on simple variable?
My question is: How to observe changes on simple variable like String or num? I know that you can easy observe object like this:
observe(t, (e) => print ("Value changed"));
but How to do this on simple variable?
Here is an example of the binding of a string value that is object attribute:
<!DOCTYPE html>
<html>
<head>
<title>index</title>
<script src="packages/polymer/boot.js"></script>
</head>
<body>
<template id="_template" bind>
<input type="text" value="{{name}}">
<p>The name is {{name}}</p>
</template>
<script type="application/dart" src="index.dart"></script>
</body>
</html>
import 'dart:html';
import 'package:polymer/polymer.dart';
class Person extends Object with ObservableMixin {
@observable
String name;
Person(this.name);
}
main() {
query("#_template").model = new Person('Bob');
}
(This answer applies to Polymer.dart.)
The
observe
package includes a wrapper for single observable values:ObservableBox
.There is no way to observe a top-level or function-scope single string, boolean, int, or double without using ObservableBox.
If the string, boolean, int, or double is a field of a class, you can use
ObservableMixin
and the@observable
annotation.You can then get notified when an instance of Foo changes: