Farid Safi

Results 44 comments of Farid Safi

weird, what if you replace https://github.com/FaridSafi/react-native-gifted-form/blob/c748128caf005a3aca5a624b1bf5210a92bb3698/mixins/ContainerMixin.js#L51 by ``` js this._scrollResponder.scrollWithoutAnimationTo(0, this._pageY + this._y - this._locationY - keyboardHeight + 44); ```

I don't understand why x and y are inverted in your case. Which RN version are you using (I didn't test with last ones) ?

@danielweinmann Are you using 0.19 and experimenting scrollWithoutAnimationTo issue too ?

I didn't test but I guess it can be fixed by scrollTo({x, y, animated: false})

Your text input widget with right image looks nice! you should share it :smiley:

Thank you guys. I published 0.0.5 with support of react-native 0.20.0 `ScrollView.scrollTo({x: 0, y: 5, animated: true})` @aksonov `@FaridSafi Could we also restore scroll position once keyboard is disappeared?` I...

@aksonov I can't remember exactly what was the problem with restoring but it might be related to the contentInset of the ScrollView I didn't try keyboard events when I implemented...

Hello @ammark47 Regarding the airbnb filters I guess you can use sectionHeaderView GiftedListView prop For the rows you can use rowView GiftedListView prop

Hello guys sorry for late reply. I think the long term solution is to replace the current pull to refresh implementation by the new crossplatform RefreshControl feature https://facebook.github.io/react-native/docs/refreshcontrol.html I can't...

Hello @benvium, Maybe you can try ``` js this.refs.listView._postRefresh(null, {external: true}); ```