react-native-keyboard-controller
Version:
Keyboard manager which works in identical way on both iOS and Android
23 lines (22 loc) • 996 B
text/typescript
export { default as KeyboardAvoidingView } from "./KeyboardAvoidingView";
export { default as KeyboardStickyView } from "./KeyboardStickyView";
export { default as KeyboardAwareScrollView } from "./KeyboardAwareScrollView";
export {
default as KeyboardToolbar,
DefaultKeyboardToolbarTheme,
} from "./KeyboardToolbar";
export { default as KeyboardChatScrollView } from "./KeyboardChatScrollView";
export { default as KeyboardEffects } from "./KeyboardEffects";
export type { KeyboardAvoidingViewProps } from "./KeyboardAvoidingView";
export type { KeyboardStickyViewProps } from "./KeyboardStickyView";
export type { KeyboardEffectsProps } from "./KeyboardEffects";
export type {
KeyboardAwareScrollViewMode,
KeyboardAwareScrollViewProps,
KeyboardAwareScrollViewRef,
} from "./KeyboardAwareScrollView/types";
export type { KeyboardToolbarProps } from "./KeyboardToolbar";
export type {
KeyboardChatScrollViewProps,
KeyboardChatScrollViewRef,
} from "./KeyboardChatScrollView/types";