You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[useEffect](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useEffect.html)| Useful for side-effects and optionally canceling them. |
299
-
|[useState](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useState.html)| Creates a variable and subscribes to it. |
300
-
|[useMemoized](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useMemoized.html)| Caches the instance of a complex object. |
301
-
|[useRef](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useRef.html)| Creates an object that contains a single mutable property. |
302
-
|[useCallback](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useCallback.html)| Caches a function instance. |
303
-
|[useContext](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useContext.html)| Obtains the `BuildContext` of the building `HookWidget`. |
304
-
|[useValueChanged](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useValueChanged.html)| Watches a value and triggers a callback whenever its value changed. |
|[useEffect](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useEffect.html)| Useful for side-effects and optionally canceling them. |
299
+
|[useState](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useState.html)| Creates a variable and subscribes to it. |
300
+
|[useMemoized](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useMemoized.html)| Caches the instance of a complex object. |
301
+
|[useRef](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useRef.html)| Creates an object that contains a single mutable property. |
302
+
|[useCallback](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useCallback.html)| Caches a function instance. |
303
+
|[useContext](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useContext.html)| Obtains the `BuildContext` of the building `HookWidget`. |
304
+
|[useValueChanged](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useValueChanged.html)| Watches a value and triggers a callback whenever its value changed. |
305
305
306
306
### Object-binding
307
307
@@ -310,48 +310,48 @@ They will take care of creating/updating/disposing an object.
|[useStream](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useStream.html)| Subscribes to a `Stream` and returns its current state as an `AsyncSnapshot`. |
316
-
|[useStreamController](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useStreamController.html)| Creates a `StreamController` which will automatically be disposed. |
317
-
|[useFuture](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useFuture.html)| Subscribes to a `Future` and returns its current state as an `AsyncSnapshot`. |
|[useStream](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useStream.html)| Subscribes to a `Stream` and returns its current state as an `AsyncSnapshot`. |
316
+
|[useStreamController](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useStreamController.html)| Creates a `StreamController` which will automatically be disposed. |
317
+
|[useFuture](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useFuture.html)| Subscribes to a `Future` and returns its current state as an `AsyncSnapshot`. |
|[useSingleTickerProvider](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useSingleTickerProvider.html)| Creates a single usage `TickerProvider`. |
324
-
|[useAnimationController](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useAnimationController.html)| Creates an `AnimationController` which will be automatically disposed. |
325
-
|[useAnimation](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useAnimation.html)| Subscribes to an `Animation` and returns its value. |
|[useSingleTickerProvider](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useSingleTickerProvider.html)| Creates a single usage `TickerProvider`. |
324
+
|[useAnimationController](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useAnimationController.html)| Creates an `AnimationController` which will be automatically disposed. |
325
+
|[useAnimation](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useAnimation.html)| Subscribes to an `Animation` and returns its value. |
|[useListenable](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useListenable.html)| Subscribes to a `Listenable` and marks the widget as needing build whenever the listener is called. |
332
-
|[useListenableSelector](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useListenableSelector.html)| Similar to `useListenable`, but allows filtering UI rebuilds |
333
-
|[useValueNotifier](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useValueNotifier.html)| Creates a `ValueNotifier` which will be automatically disposed. |
334
-
|[useValueListenable](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useValueListenable.html)| Subscribes to a `ValueListenable` and return its value. |
|[useListenable](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useListenable.html)| Subscribes to a `Listenable` and marks the widget as needing build whenever the listener is called. |
332
+
|[useListenableSelector](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useListenableSelector.html)| Similar to `useListenable`, but allows filtering UI rebuilds |
333
+
|[useValueNotifier](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useValueNotifier.html)| Creates a `ValueNotifier` which will be automatically disposed. |
334
+
|[useValueListenable](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useValueListenable.html)| Subscribes to a `ValueListenable` and return its value. |
|[useReducer](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useReducer.html)| An alternative to `useState` for more complex states. |
343
-
|[usePrevious](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/usePrevious.html)| Returns the previous argument called to [usePrevious]. |
344
-
|[useTextEditingController](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useTextEditingController-constant.html)| Creates a `TextEditingController`. |
345
-
|[useFocusNode](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useFocusNode.html)| Creates a `FocusNode`. |
346
-
|[useTabController](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useTabController.html)| Creates and disposes a `TabController`. |
347
-
|[useScrollController](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useScrollController.html)| Creates and disposes a `ScrollController`. |
348
-
|[usePageController](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/usePageController.html)| Creates and disposes a `PageController`. |
349
-
|[useAppLifecycleState](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useAppLifecycleState.html)| Returns the current `AppLifecycleState` and rebuilds the widget on change. |
350
-
|[useOnAppLifecycleStateChange](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useOnAppLifecycleStateChange.html)| Listens to `AppLifecycleState` changes and triggers a callback on change. |
351
-
|[useTransformationController](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useTransformationController.html)| Creates and disposes a `TransformationController`. |
352
-
|[useIsMounted](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useIsMounted.html)| An equivalent to `State.mounted` for hooks. |
353
-
|[useAutomaticKeepAlive](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useAutomaticKeepAlive.html)| An equivalent to the `AutomaticKeepAlive` widget for hooks. |
354
-
|[useOnPlatformBrightnessChange](https://pub.dartlang.org/documentation/flutter_hooks/latest/flutter_hooks/useOnPlatformBrightnessChange.html)| Listens to platform `Brightness` changes and triggers a callback on change.|
|[useReducer](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useReducer.html)| An alternative to `useState` for more complex states. |
343
+
|[usePrevious](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/usePrevious.html)| Returns the previous argument called to [usePrevious]. |
344
+
|[useTextEditingController](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useTextEditingController-constant.html)| Creates a `TextEditingController`. |
345
+
|[useFocusNode](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useFocusNode.html)| Creates a `FocusNode`. |
346
+
|[useTabController](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useTabController.html)| Creates and disposes a `TabController`. |
347
+
|[useScrollController](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useScrollController.html)| Creates and disposes a `ScrollController`. |
348
+
|[usePageController](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/usePageController.html)| Creates and disposes a `PageController`. |
349
+
|[useAppLifecycleState](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useAppLifecycleState.html)| Returns the current `AppLifecycleState` and rebuilds the widget on change. |
350
+
|[useOnAppLifecycleStateChange](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useOnAppLifecycleStateChange.html)| Listens to `AppLifecycleState` changes and triggers a callback on change. |
351
+
|[useTransformationController](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useTransformationController.html)| Creates and disposes a `TransformationController`. |
352
+
|[useIsMounted](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useIsMounted.html)| An equivalent to `State.mounted` for hooks. |
353
+
|[useAutomaticKeepAlive](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useAutomaticKeepAlive.html)| An equivalent to the `AutomaticKeepAlive` widget for hooks. |
354
+
|[useOnPlatformBrightnessChange](https://pub.dev/documentation/flutter_hooks/latest/flutter_hooks/useOnPlatformBrightnessChange.html)| Listens to platform `Brightness` changes and triggers a callback on change.|
0 commit comments