Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork16
wasabeef/flutter_use
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
A collection of Flutter Hooks inspired by React'sreact-use library. This monorepo contains multiple packages providing different categories of hooks for Flutter development.
| Package | Description | Version |
|---|---|---|
flutter_use | Core hooks library with essential utilities | |
flutter_use_audio | Audio playback and control hooks | |
flutter_use_battery | Battery state monitoring hooks | |
flutter_use_geolocation | Location and permission hooks | |
flutter_use_network_state | Network connectivity hooks | |
flutter_use_sensors | Device sensors hooks | |
flutter_use_video | Video playbook hooks |
For the core package:
flutter pub add flutter_use
For specialized packages:
flutter pub add flutter_use_audio# Audio hooksflutter pub add flutter_use_battery# Battery hooks# ... and so on
Try out all hooks with live examples at:https://wasabeef.github.io/flutter_use/
Core package:flutter_use
useAsync— manages async operations with loading, data, and error states.useDebounceFn— debounces function calls for better performance.useInfiniteScroll— implements infinite scrolling with automatic loading.useForm— comprehensive form state management with validation.useKeyboard— tracks keyboard visibility and manages layouts (mobile only).
Core package:flutter_use
useToggleanduseBoolean— tracks state of a boolean.useCounteranduseNumber— tracks state of a number.useList— tracks state of an array.useMap— tracks state of a map.useSet— tracks state of a Set.useStateList— circularly iterates over an array.useDefault— returns the default value when state isnull.useLatest— returns the latest state or props.usePreviousDistinct— likeusePreviousbut with a predicate to determine ifpreviousshould update.useTextFormValidator— reactive form validation with real-time feedback.
Core package:flutter_use
useInterval— re-builds component on a set interval usingTimer.periodic.useTimeout— re-builds component after a timeout.useTimeoutFn— calls given function after a timeout.useUpdate— returns a callback, which re-builds component when called.
Core package:flutter_use
useFutureRetry—useFuturewith an additional retry method.useDebounce— debounces a function.useThrottle— throttles a value to update at most once per duration.useThrottleFn— throttles a function to execute at most once per duration.useError— error dispatcher.useException— exception dispatcher.
Core package:flutter_use
useScroll— tracks a widget's scroll position.useScrolling— tracks whether widget is scrolling.useClickAway— triggers callback when user clicks outside target area.useCopyToClipboard— copies text to clipboard.
Core package:flutter_use
useEffectOnce— a modifieduseEffecthook that only runs once.useLifecycles— callsmountandunmountcallbacks.useMount— callsmountcallbacks.useUnmount— callsunmountcallbacks.useUpdateEffect— run aneffectonly on updates.useCustomCompareEffect— run aneffectdepending on deep comparison of its dependencies.useFirstMountState— check if current build is first.useBuildsCount— count component builds.
Core package:flutter_use
useLogger— logs in console as component goes through life-cycles.
Package:flutter_use_sensors
useAccelerometer,useUserAccelerometer,useGyroscope, anduseMagnetometer— tracks accelerometer, gyroscope, and magnetometer sensors.
Core package:flutter_use
useOrientation— tracks state of device's screen orientation.useOrientationFn— calls given function when screen orientation changes.
Package:flutter_use_battery
useBattery— tracks device battery state.
Package:flutter_use_geolocation
useGeolocation— tracks geo location and permission state of user's device.
Package:flutter_use_network_state
useNetworkState— tracks the state of apps network connection.
Package:flutter_use_audio
useAudio— plays audio and exposes its controls.
Package:flutter_use_video
useAssetVideoanduseNetworkVideo— plays video, tracks its state, and exposes playback controls.
useEvent— subscribe to events.useFullscreen— display an element or video full-screen.usePageLeave— triggers when mouse leaves page boundaries.usePermission— query permission status for apps APIs.useMethods— neat alternative touseReducer.useSetState— createssetStatemethod which works likethis.setState.usePromise— resolves promise only while component is mounted.useObservable— tracks latest value of anObservable.
Unlicense — public domain.
About
Play Flutter Hooks.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors5
Uh oh!
There was an error while loading.Please reload this page.
