react-native-screen-booking-house-cleaning
Version:
A single / multiple, categorizable, customizable, localizable and searchable item booking component for react native which supports both Android & iOS.
9 lines (5 loc) • 297 B
JavaScript
import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view';
import { ScrollView, Platform } from 'react-native';
const isIOS = Boolean(Platform.OS.toLowerCase() === 'ios');
const KeyboardAware = isIOS ? KeyboardAwareScrollView : ScrollView;
export default KeyboardAware;