UNPKG

react-native-gifted-chat-flashlist

Version:

React Native Gifted Chat with FlashList optimization for better performance

17 lines 497 B
import { Platform } from 'react-native'; export const MIN_COMPOSER_HEIGHT = Platform.select({ ios: 33, android: 41, web: 34, windows: 34, }); export const MAX_COMPOSER_HEIGHT = 200; export const DEFAULT_PLACEHOLDER = 'Type a message...'; export const DATE_FORMAT = 'll'; export const TIME_FORMAT = 'LT'; export const TEST_ID = { WRAPPER: 'GC_WRAPPER', LOADING_WRAPPER: 'GC_LOADING_CONTAINER', SEND_TOUCHABLE: 'GC_SEND_TOUCHABLE', }; //# sourceMappingURL=Constant.js.map