import React from 'react'; import {StyleSheet} from 'react-native'; import settingTypes from './settingTypes'; import {SafeAreaView} from 'react-native-safe-area-context'; import StatusBar from '@/components/base/statusBar'; import {useParams} from '@/core/router'; import HorizontalSafeAreaView from '@/components/base/horizontalSafeAreaView.tsx'; import AppBar from '@/components/base/appBar'; export default function Setting() { const {type} = useParams<'setting'>(); const settingItem = settingTypes[type]; return ( {settingItem.showNav === false ? null : ( {settingItem?.title} )} {type === 'plugin' ? ( ) : ( )} ); } const style = StyleSheet.create({ wrapper: { width: '100%', flex: 1, }, appbar: { shadowColor: 'transparent', backgroundColor: '#2b333eaa', }, header: { backgroundColor: 'transparent', shadowColor: 'transparent', }, });