@wouterds/react-native-tv-focus
v1.0.5
Published
test
Downloads
29
Maintainers
Readme
@wouterds/react-native-tv-focus
A package to programatically focus views on tvOS & AndroidTV.
Installation
# yarn
yarn add @wouterds/react-native-tv-focus
# npm
npm install @wouterds/react-native-tv-focus
Usage
import { findNodeHandle } from 'react-native';
import { focus } from '@wouterds/react-native-tv-focus';
// ...
// get tag by ref from a UI element
const tag = findNodeHandle(ref.current);
// programatically force focus on tag
focus(tag);