You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using your plugin on the web (using more and more popular react-native-web), but MIN_COMPOSER_HEIGHT is not defined for web in Constant.js. Therefore, height of the container is not calculated and AnimatedView height is not set which results in messages overflowing under the input. Besides, input height is also wrong.
This fixes both issues and doesn't influence apps at all: export const MIN_COMPOSER_HEIGHT = Platform.select({ ios: 33, android: 41, web: 44, });
Additional Information
react-native-gifted-chat version: 0.4.3
Platform(s) (iOS, Android, or both?): web
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Issue Description
I'm using your plugin on the web (using more and more popular react-native-web), but MIN_COMPOSER_HEIGHT is not defined for web in Constant.js. Therefore, height of the container is not calculated and AnimatedView height is not set which results in messages overflowing under the input. Besides, input height is also wrong.
This fixes both issues and doesn't influence apps at all:
export const MIN_COMPOSER_HEIGHT = Platform.select({ ios: 33, android: 41, web: 44, });
Additional Information
The text was updated successfully, but these errors were encountered: