import { FC } from 'react' import { Keyboard, View as NativeView, TouchableWithoutFeedback } from 'react-native' import { useTheme } from '../../../../providers/native' import { createStyles } from './styles' import type { ViewProps } from './types' const View: FC = ({ style, dismissKeyboard = false, ...props }) => { const theme = useTheme() const styles = createStyles(theme) if (dismissKeyboard) { return ( ) } return } export default View