react-native-keyboard-controller
Version:
Keyboard manager which works in identical way on both iOS and Android
13 lines (9 loc) • 437 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 {
visible?: boolean;
}
export default codegenNativeComponent<NativeProps>("OverKeyboardView", {
interfaceOnly: true,
}) as HostComponent<NativeProps>;