How To Create Twitter Like Profile Layout?
Solution 1:
There is actually a really good example of this in the F8 app. The 3 files you want to look at are here:
https://github.com/fbsamples/f8app/blob/master/js/tabs/schedule/MyScheduleView.jshttps://github.com/fbsamples/f8app/blob/master/js/common/ListContainer.jshttps://github.com/fbsamples/f8app/blob/master/js/common/PureListView.js
If you want to see how it works in the app it is the My F8 tab.
The basic idea is that the ListContainer
keeps track of the scroll position via the handleScroll
function. It passes handleScroll
to all of its children renaming the function to onScroll
.
The PureListView
a it takes that onScroll
property via the object spread operator {...this.props}
and passes it into the ListView
.
That is all just to keep track of the scroll. If you look in MyScheduleView.js
you can see how it is mostly implemented.
Hope that helps.
Post a Comment for "How To Create Twitter Like Profile Layout?"