@sigmayun/react-native-vconsole
v0.0.9
Published
vconsole for react native
Downloads
14
Readme
@sigmayun/react-native-vconsole
vConsole for react native, inspired by vconsole & vconsole-react-native &rnvconsole. Debugger on top of screen. Have a try in expo https://snack.expo.io/SklJHMS3S
Features
- console[log, warn, error, info] in Log Panel.
- Network request list & detail.
- Customized Version Info you want to show.
Install
$ yarn add @sigmayun/react-native-vconsole
Usage
import VConsole from '@sigmayun/react-native-vconsole'
/* INFO is optional */
const appInfo = {
version: '1.0.0',
test_version: '4',
message: 'test xxx features'
}
// in render function
render() {
return (
<View>
<VConsole appInfo={appInfo} />
<View></View>
</View>
)
}