Skip to content

Commit 304ad7f

Browse files
committed
Merge branch 'master' of https://github.com/GetStream/stream-chat-react-native into typescript-conversion
2 parents e4df11b + b62ef7c commit 304ad7f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

expo-package/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "stream-chat-expo",
3-
"version": "1.3.3",
3+
"version": "1.3.4",
44
"author": {
55
"company": "Stream.io Inc"
66
},
77
"main": "src/index.js",
88
"types": "types/index.d.ts",
99
"dependencies": {
1010
"react-native-unimodules": "^0.5.4",
11-
"stream-chat-react-native-core": "v1.3.3"
11+
"stream-chat-react-native-core": "v1.3.4"
1212
},
1313
"peerDependencies": {
1414
"expo": "^32.0.0",

native-package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stream-chat-react-native",
3-
"version": "1.3.3",
3+
"version": "1.3.4",
44
"author": {
55
"company": "Stream.io Inc",
66
"name": "Stream.io Inc"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stream-chat-react-native-core",
3-
"version": "1.3.3",
3+
"version": "1.3.4",
44
"author": {
55
"company": "Stream.io Inc",
66
"name": "Stream.io Inc"

src/components/KeyboardCompatibleView/KeyboardCompatibleView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class KeyboardCompatibleView extends React.Component<
3434
> = {
3535
behavior: Platform.OS === 'ios' ? 'padding' : 'position',
3636
enabled: true,
37-
keyboardVerticalOffset: 66.5, // default MessageInput height
37+
keyboardVerticalOffset: Platform.OS === 'ios' ? 86.5 : -300, // default MessageInput height
3838
};
3939

4040
_frame: LayoutRectangle | null = null;

0 commit comments

Comments
 (0)