react-native-assistive-tool
v0.1.12
Published
dev tool
Downloads
123
Readme
react-native-assistive-tool
React native dev tool for assistive touch
- Network logger
- AsyncStorage viewer
- Navigation logger
Installation
npm install react-native-assistive-tool
Or yarn
yarn add react-native-assistive-tool
You have to install "@react-native-async-storage/async-storage" for AsyncStorage viewer
yarn add @react-native-async-storage/async-storage
You have to install "react-navigation" for Navigation logger
yarn add @react-navigation/native @react-navigation/native-stack
And install "react-native-network-logger" for Network logger
yarn add react-native-network-logger
"react-native-mmkv-storage":is optional for MMKV storage
Usage
Make sure to wrap your app with NavigationContainer
import { AssistiveTouch } from 'react-native-assistive-tool';
// ...
<AssistiveTouch
color="black"
size={70}
//MUST FOR NAVIGATION LOGGER
navigationRef={navigationRef}
>
{/Your component/}
</AssistiveTouch>
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with create-react-native-library