rodydavis / signals.dart

Reactive programming made simple for Dart and Flutter
http://dartsignals.dev
Apache License 2.0
437 stars 50 forks source link

Documentation Issue #220

Closed devchenli closed 6 months ago

devchenli commented 6 months ago

https://dartsignals.dev/reference/overview/

截屏2024-04-02 13 47 54

// All the callbacks will be called print(d.value); // 3

What exactly does it mean? All the callbacks will be called ? None of the callbacks will be called ? Such confusion.

Maybe like this ? :

First : // All the callbacks will be called print(d.value); // 3

Starting from the second : // None of the callbacks will be called because the // value is cached at each node print(d.value); // 3