import React from 'react'; import {StyleSheet} from 'react-native'; import rpx from '@/utils/rpx'; import {useRoute} from '@react-navigation/native'; import settingTypes from './settingTypes'; import {SafeAreaView} from 'react-native-safe-area-context'; import StatusBar from '@/components/base/statusBar'; import SimpleAppBar from '@/components/base/simpleAppBar'; export default function Setting() { const route = useRoute(); const type: string = route.params?.type; const settingItem = settingTypes[type]; return ( ); } const style = StyleSheet.create({ wrapper: { width: rpx(750), flex: 1, }, appbar: { shadowColor: 'transparent', backgroundColor: '#2b333eaa', }, header: { backgroundColor: 'transparent', shadowColor: 'transparent', }, });