{"id":13451947,"url":"https://github.com/react-native-community/hooks","last_synced_at":"2025-05-14T22:06:41.597Z","repository":{"id":38052896,"uuid":"155018460","full_name":"react-native-community/hooks","owner":"react-native-community","description":"React Native APIs turned into React Hooks for use in functional React components","archived":false,"fork":false,"pushed_at":"2025-05-06T02:31:28.000Z","size":2290,"stargazers_count":3543,"open_issues_count":27,"forks_count":204,"subscribers_count":39,"default_branch":"main","last_synced_at":"2025-05-07T21:59:14.201Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/react-native-community.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-10-27T23:23:49.000Z","updated_at":"2025-05-07T16:10:48.000Z","dependencies_parsed_at":"2023-12-21T19:32:31.077Z","dependency_job_id":"a836d78d-30dd-45e4-bd9f-04e423342e91","html_url":"https://github.com/react-native-community/hooks","commit_stats":{"total_commits":512,"total_committers":48,"mean_commits":"10.666666666666666","dds":0.767578125,"last_synced_commit":"61b6ef5a1754afb8937fa7437ca20df34387b5f8"},"previous_names":["react-native-community/react-native-hooks"],"tags_count":27,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/react-native-community%2Fhooks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/react-native-community%2Fhooks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/react-native-community%2Fhooks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/react-native-community%2Fhooks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/react-native-community","download_url":"https://codeload.github.com/react-native-community/hooks/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254235695,"owners_count":22036963,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-31T07:01:07.891Z","updated_at":"2025-05-14T22:06:36.574Z","avatar_url":"https://github.com/react-native-community.png","language":"TypeScript","readme":"![React Native Hooks](reactnativehooks.jpg)\n\n## React Native Hooks\n\n[![Version][version-badge]][package]\n\nReact Native APIs turned into React Hooks allowing you to access asynchronous APIs directly in your functional components.\n\n\u003e Note: You must use React Native \u003e= 0.59.0\n\n### Installation with npm\n\n```sh\nnpm install @react-native-community/hooks\n```\n\nInstallation with yarn\n\n```sh\nyarn add @react-native-community/hooks\n```\n\n## API\n\n- [useAccessibilityInfo](https://github.com/react-native-community/hooks#useaccessibilityinfo)\n- [useAppState](https://github.com/react-native-community/hooks#useappstate)\n- [useBackHandler](https://github.com/react-native-community/hooks#usebackhandler)\n- [useImageDimensions](https://github.com/react-native-community/hooks#useImageDimensions)\n- [useKeyboard](https://github.com/react-native-community/hooks#usekeyboard)\n- [useInteractionManager](https://github.com/react-native-community/hooks#useinteractionmanager)\n- [useDeviceOrientation](https://github.com/react-native-community/hooks#usedeviceorientation)\n- [useLayout](https://github.com/react-native-community/hooks#uselayout)\n- [useRefresh](https://github.com/react-native-community/hooks#useRefresh)\n\n### `useAccessibilityInfo`\n\n```js\nimport {useAccessibilityInfo} from '@react-native-community/hooks'\n\nconst {\n  boldTextEnabled,\n  screenReaderEnabled,\n  reduceMotionEnabled, // requires RN60 or newer\n  grayscaleEnabled, // requires RN60 or newer\n  invertColorsEnabled, // requires RN60 or newer\n  reduceTransparencyEnabled, // requires RN60 or newer\n} = useAccessibilityInfo()\n```\n\n### `useAppState`\n\nAppState will change between one of 'active', 'background', or (iOS) 'inactive' when the app is closed or put into the background.\n\n```js\nimport {useAppState} from '@react-native-community/hooks'\n\nconst currentAppState = useAppState()\n```\n\n### `useBackHandler`\n\n```js\nimport {useBackHandler} from '@react-native-community/hooks'\n\nuseBackHandler(() =\u003e {\n  if (shouldBeHandledHere) {\n    // handle it\n    return true\n  }\n  // let the default thing happen\n  return false\n},[shouldBeHandledHere])\n```\n\n### `useImageDimensions`\n\n```js\nimport {useImageDimensions} from '@react-native-community/hooks'\n\nconst source = require('./assets/yourImage.png')\n// or\nconst source = {uri: 'https://your.image.URI'}\n\nconst {dimensions, loading, error} = useImageDimensions(source)\n\nif (loading || error || !dimensions) {\n  return null\n}\nconst {width, height, aspectRatio} = dimensions\n```\n\n### `useKeyboard`\n\n```js\nimport {useKeyboard} from '@react-native-community/hooks'\n\nconst keyboard = useKeyboard()\n\nconsole.log('keyboard isKeyboardShow: ', keyboard.keyboardShown)\nconsole.log('keyboard keyboardHeight: ', keyboard.keyboardHeight)\n```\n\n### `useInteractionManager`\n\n```js\nimport {useInteractionManager} from '@react-native-community/hooks'\n\nconst interactionReady = useInteractionManager()\n\nconsole.log('interaction ready: ', interactionReady)\n```\n\n### `useDeviceOrientation`\n\n```js\nimport {useDeviceOrientation} from '@react-native-community/hooks'\n\nconst orientation = useDeviceOrientation()\n\nconsole.log('orientation is:', orientation)\n```\n\n### `useLayout`\n\n```js\nimport { useLayout } from '@react-native-community/hooks'\n\nconst { onLayout, ...layout } = useLayout()\n\nconsole.log('layout: ', layout)\n\n\u003cView onLayout={onLayout} style={{width: 200, height: 200, marginTop: 30}} /\u003e\n```\n\n### `useRefresh`\n\n```js\nimport {useRefresh} from '@react-native-community/hooks'\n\nconst fetch = () =\u003e {\n  return new Promise((resolve) =\u003e setTimeout(resolve, 500))\n}\n\nconst {isRefreshing, onRefresh} = useRefresh(fetch)\n\n;\u003cScrollView\n  refreshControl={\n    \u003cRefreshControl refreshing={isRefreshing} onRefresh={onRefresh} /\u003e\n  }\n/\u003e\n```\n\n[version-badge]: https://img.shields.io/npm/v/@react-native-community/hooks.svg?style=flat-square\n[package]: https://www.npmjs.com/package/@react-native-community/hooks\n\n## Thanks\n\nWe use [Changesets](https://github.com/changesets/changesets) for managing releases and versioning.\n\n## Contributors ✨\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://pavlos.dev\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/100233?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ePavlos Vinieratos\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=pvinis\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#design-pvinis\" title=\"Design\"\u003e🎨\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=pvinis\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#infra-pvinis\" title=\"Infrastructure (Hosting, Build-Tools, etc)\"\u003e🚇\u003c/a\u003e \u003ca href=\"#maintenance-pvinis\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=pvinis\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/melihberberolu\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/3721734?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMelih\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=melihberberolu\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=melihberberolu\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#infra-melihberberolu\" title=\"Infrastructure (Hosting, Build-Tools, etc)\"\u003e🚇\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=melihberberolu\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://naturalclar.dev\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/6936373?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJesse Katsumata\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=Naturalclar\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=Naturalclar\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"#maintenance-Naturalclar\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=Naturalclar\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://twitter.com/webtaculars\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/11532969?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eabhishek gupta\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/issues?q=author%3Awebtaculars\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://www.linkedin.com/in/zeljko-markovic-19266344\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/2046481?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eZeljko\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=zeljkoX\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://linus.unnebäck.se/\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/189580?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eLinus Unnebäck\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=LinusU\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"#infra-LinusU\" title=\"Infrastructure (Hosting, Build-Tools, etc)\"\u003e🚇\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=LinusU\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=LinusU\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://stackoverflow.com/users/692499/tony\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/696842?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eTony Xiao\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=tonyxiao\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/ronal2do\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/4389565?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRonaldo Lima\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=ronal2do\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://mariusreimer.com\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/15148377?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMarius Reimer\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=reime005\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/pnishith\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/24517032?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eNishith Patel\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=pnishith\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/jozn\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/3476299?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ejozn\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=jozn\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://hipstersmoothie.com\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/1192452?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAndrew Lisowski\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#infra-hipstersmoothie\" title=\"Infrastructure (Hosting, Build-Tools, etc)\"\u003e🚇\u003c/a\u003e \u003ca href=\"#platform-hipstersmoothie\" title=\"Packaging/porting to new platform\"\u003e📦\u003c/a\u003e \u003ca href=\"#tool-hipstersmoothie\" title=\"Tools\"\u003e🔧\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=hipstersmoothie\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=hipstersmoothie\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://linkedin.com/in/farazamiruddin\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/6789822?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003efaraz ahmad\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=faahmad\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://www.naderdabit.me\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/1857282?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eNader Dabit\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#ideas-dabit3\" title=\"Ideas, Planning, \u0026 Feedback\"\u003e🤔\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://twitter.com/dani_akash_\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/6841445?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDani Akash\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=DaniAkash\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://dylanvann.com/\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/1537615?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDylan Vann\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=DylanVann\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/thinklinux\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/326949?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eTihomir Valkanov\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=thinklinux\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://twitter.com/pistoudev\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/6703711?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ePierre Skowron\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=pistou\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/Gamal-Shaban\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/17288652?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eGamal Shaban\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=Gamal-Shaban\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=Gamal-Shaban\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=Gamal-Shaban\" title=\"Tests\"\u003e⚠️\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://tgrm.github.io/GregBush\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/44202486?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eGreg-Bush\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=Greg-Bush\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=Greg-Bush\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=Greg-Bush\" title=\"Tests\"\u003e⚠️\u003c/a\u003e \u003ca href=\"#infra-Greg-Bush\" title=\"Infrastructure (Hosting, Build-Tools, etc)\"\u003e🚇\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/adkenyon\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/4999026?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAlan Kenyon\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=adkenyon\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=adkenyon\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/thibmaek\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/6213695?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eThibault Maekelbergh\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=thibmaek\" title=\"Tests\"\u003e⚠️\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=thibmaek\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/GertjanReynaert\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/4712292?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eGertjan Reynaert\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=GertjanReynaert\" title=\"Tests\"\u003e⚠️\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=GertjanReynaert\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://profile.codersrank.io/user/retyui\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/4661784?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDavid NRB\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/react-native-community/hooks/commits?author=retyui\" title=\"Tests\"\u003e⚠️\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=retyui\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/react-native-community/hooks/commits?author=retyui\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n","funding_links":[],"categories":["JavaScript","Hooks","TypeScript","Libraries Used"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freact-native-community%2Fhooks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freact-native-community%2Fhooks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freact-native-community%2Fhooks/lists"}