developer debug panel
Not yet. In programing.
npm install react-native-vconsoleimport VConsole from "react-native-vconsole";
export default function App() {
return (
<VConsole>
<View style={styles.container}>
<Button
title="test log"
onPress={() => {
console.log('this is log', 'kkk', 111, { a: 1 });
}}
/>
<Button
title="test fetch"
onPress={() => {
console.log('this is log', 'kkk', 111, { a: 1 });
}}
/>
</View>
</VConsole>
);
}| console method | support |
|---|---|
| assert | - |
| clear | ing |
| context | - |
| count | ing |
| countReset | ing |
| debug | - |
| dir | - |
| dirxml | - |
| error | ing |
| group | - |
| groupCollapsed | - |
| groupEnd | - |
| info | ing |
| log | ✅ |
| memory | - |
| profile | - |
| profileEnd | - |
| table | ing |
| time | ing |
| timeEnd | ing |
| timeLog | ing |
| timeStamp | ing |
| trace | - |
| warn | ing |
In programing.
| Button | support |
|---|---|
| Developer Menu | ing |
| Relaunch | ing |
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT