react-native-keyboard-controller
Version:
Keyboard manager which works in identical way on both iOS and Android
11 lines (7 loc) • 421 B
text/typescript
import codegenNativeComponent from "react-native/Libraries/Utilities/codegenNativeComponent";
import type { HostComponent } from "react-native";
import type { ViewProps } from "react-native/Libraries/Components/View/ViewPropTypes";
export interface NativeProps extends ViewProps {}
export default codegenNativeComponent<NativeProps>("KeyboardBackgroundView", {
interfaceOnly: true,
}) as HostComponent<NativeProps>;