import React from 'react'; import { SectionList, StatusBar, StyleSheet, View, SafeAreaView, } from 'react-native'; import {useSelector} from 'react-redux'; import {RootState} from '../../store/rootReducer'; import {Background} from '../../components'; import {NO_PROFILE} from '../../store/initialStates'; import {BackgroundGradientType} from '../../types'; import {SCREEN_HEIGHT} from '../../utils/layouts'; import SettingsCell from './SettingsCell'; import {SETTINGS_DATA} from '../../constants/constants'; const PrivacyScreen: React.FC = () => { const {profile: {is_private} = NO_PROFILE} = useSelector( (state: RootState) => state.user, ); return ( <> item.title + index} renderItem={({item: {title, preimage, postimage}}) => ( )} /> ); }; const styles = StyleSheet.create({ container: {height: SCREEN_HEIGHT, marginHorizontal: '8%', marginTop: '8%'}, }); export default PrivacyScreen;