query<T> method
It is possible to manage the status by passing query
.
Defining ScopedQuery in a global scope allows you to manage state individually and safely.
ScopedQuery allows you to cache all values, while ChangeNotifierScopedQuery monitors values and notifies updates when they change.
query
を渡して状態を管理することが可能です。
ScopedQueryをグローバルなスコープに定義しておくことで状態を個別に安全に管理することができます。
ScopedQueryを使うとすべての値をキャッシュすることができ、ChangeNotifierScopedQueryを使うと値を監視して変更時に更新通知を行います。
final valueNotifierQuery = ChangeNotifierScopedQuery(
() => ValueNotifier(0),
);
class TestPage extends PageScopedWidget {
@override
Widget build(BuildContext context, PageRef ref) {
final valueNotifier = ref.page.query(valueNotifierQuery);
return Scaffold(
body: Center(child: Text("${valueNotifier.value}")),
);
}
}
Implementation
T query<T>(ScopedQuery<T> query) {
return getScopedValue<T, _QueryValue<T>>(
(ref) => _QueryValue<T>(
callback: query.call(ref),
autoDisposeWhenUnreferenced: query.autoDisposeWhenUnreferenced,
),
listen: query.listen,
name: query.name,
);
}