react-native-gifted-messenger
Advanced tools
Comparing version 0.0.19 to 0.0.20
@@ -257,3 +257,5 @@ 'use strict'; | ||
var scrollDistance = this.listHeight - this.footerY; | ||
this.scrollResponder.scrollTo(-scrollDistance); | ||
this.scrollResponder.scrollTo({ | ||
y: -scrollDistance, | ||
}); | ||
} | ||
@@ -265,3 +267,7 @@ }, | ||
var scrollDistance = this.listHeight - this.footerY; | ||
this.scrollResponder.scrollTo(-scrollDistance, 0, false); | ||
this.scrollResponder.scrollTo({ | ||
y: -scrollDistance, | ||
x: 0, | ||
animated: false, | ||
}); | ||
} | ||
@@ -268,0 +274,0 @@ }, |
{ | ||
"name": "react-native-gifted-messenger", | ||
"version": "0.0.19", | ||
"version": "0.0.20", | ||
"description": "The chat of your next React-Native Apps", | ||
@@ -5,0 +5,0 @@ "main": "GiftedMessenger.js", |
@@ -12,2 +12,3 @@ # Gifted Messenger | ||
### Changelog | ||
- 0.0.20 scrollTo support for react-native 0.20.0 | ||
- 0.0.19 Fix scrollWithoutAnimationTo for react-native 0.19.0 | ||
@@ -14,0 +15,0 @@ - 0.0.18 Simply pass a view property with the rowData to render a custom component, defaults to Bubble (PR @tommoor) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
42076
793
160