import { View, Text, Platform } from "react-native"; import React from "react"; import { KeyboardAvoidingView } from "react-native"; import { StyleSheet } from "react-native"; import { TouchableWithoutFeedback } from "react-native"; import { Keyboard } from "react-native"; const KeyboardAvoidingComponent = ({ children }) => { return ( {/* */} {children} {/* */} ); }; const styles = StyleSheet.create({ container: { flex: 1, }, inner: { flex: 1, }, }); export default KeyboardAvoidingComponent;