xref: /MusicFree/src/components/debug/index.tsx (revision 41ddce918e1138d8f16e522cc7c19ac86ceca698)
1*41ddce91Smaotoumaoimport React from "react";
2*41ddce91Smaotoumaoimport { StyleSheet, View } from "react-native";
3*41ddce91Smaotoumaoimport VDebug from "@/lib/react-native-vdebug";
4*41ddce91Smaotoumaoimport Config from "@/core/config.ts";
5ea6d708fS猫头猫
6ea6d708fS猫头猫export default function Debug() {
7*41ddce91Smaotoumao    const showDebug = Config.useConfigValue('debug.devLog');
8ea6d708fS猫头猫    return showDebug ? (
9ea6d708fS猫头猫        <View style={style.wrapper} pointerEvents="box-none">
10ea6d708fS猫头猫            <VDebug />
11ea6d708fS猫头猫        </View>
12ea6d708fS猫头猫    ) : null;
13ea6d708fS猫头猫}
14ea6d708fS猫头猫
15ea6d708fS猫头猫const style = StyleSheet.create({
16ea6d708fS猫头猫    wrapper: {
17ea6d708fS猫头猫        position: 'absolute',
18ea6d708fS猫头猫        top: 0,
19ea6d708fS猫头猫        left: 0,
20ea6d708fS猫头猫        right: 0,
21ea6d708fS猫头猫        bottom: 0,
22ea6d708fS猫头猫        width: '100%',
23ea6d708fS猫头猫        height: '100%',
24ea6d708fS猫头猫        zIndex: 999,
25ea6d708fS猫头猫    },
26ea6d708fS猫头猫});
27