v3.0.4
stream_mixin
使用流进行状态管理,以避免使用 Flutter 的 State/setState/StatefulWidget,提升性能并实现代码分离。
6喜欢 172近 30 天下载160Pub 分数
AndroidiOSWebmacOSWindowsLinux
一个简单的 Dart 混入,用于向任何类对象添加流行为
{"sdk":"flutter"}^1.0.4{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
State management using stream to avoid use of flutter's State/setState/StatefulWidget, boosting the performance and code separation.
The intention for this package is to use stream instead of flutter's state for streaming data from the controller/adapter/service class to the widgets, which results in better performance and cleaner code.
A basic example of a counter service that increments the count and streams the count to the widget
class Counter with StreamMixin<int> {
increment() {
update((lastUpdate ?? 0) + 1);
}
}
/// You can either create a global instance of Counter or create a
/// singleton (recommented) like class by adding the following in Counter class
/// ```dart
/// Counter._();
/// static Counter instance = Counter._();
/// ```
final counter = Counter();
anywhereInTheApp() {
counter.increment();
}
Widget someWidget() {
return StreamBuilder<int>(
stream: counter.onChange,
builder: (cxt, snap) => Text((snap.data ?? 0).toString()),
);
}
There are couple of ways in which you can contribute.