InvertibleScrollView
InvertibleScrollView is a React Native scroll view that can be inverted so that content is rendered starting from the bottom, and the user must scroll down to reveal more. This is a common design in chat applications and the command-line terminals. InvertibleScrollView also supports horizontal scroll views to present content from right to left.
It conforms to ScrollableMixin so you can compose it with other scrollable components.
Installation
Use this with react-native 0.8.0-rc or later.
npm install react-native-invertible-scroll-view
Usage
Compose InvertibleScrollView with the scrollable component you would like to invert. In the case of a ListView, you would write:
;let ListView Text TouchableHighlight View StyleSheet = React;; Component { superprops context; this_data = ; thisstate = dataSource: r1 !== r2 ; } { return <ListView renderScrollComponent= <InvertibleScrollView ...props inverted /> dataSource=thisstatedataSource renderHeader=this_renderHeader renderRow=this_renderRow style=stylescontainer /> ; } { return <TouchableHighlight onPress=this_onPress style=stylesbutton> <Text>Add a row</Text> </TouchableHighlight> ; } { return <Text key=row style=stylesrow>row</Text> } { this_data; var rows = this_data; // It's important to keep row IDs consistent to avoid extra rendering. You // may need to reverse the list of row IDs so the so that the inversion // will order the rows correctly. var rowIds = rows; this; } let styles = StyleSheet;
NOTE: When inverting a ListView, you must create a ListView that delegates to an InvertibleScrollView as shown above and not the other way around. Otherwise it will not be able to invert the rows and the content will look upside down. This is true for any scroll view that adds its own children, not just ListView.
Tips and Caveats
- Horizontal scroll views are supported
- To scroll to the bottom, call
scrollTo(0)
on a ref to the scroll view - When the scroll view is inverted, InvertibleScrollView wraps each child in a View that is flipped
- Scroll views that add children (ex: ListViews) must delegate to InvertibleScrollViews so that the children can be properly inverted
- List section headers are unsupported
- Styles like
padding
are not corrected, so top padding will actually pad the bottom of the component - Properties like
contentOffset
andcontentInset
are not flipped; for example, the top inset adjusts the bottom of an inverted scroll view
Implementation
InvertibleScrollView uses a scale transformation to efficiently invert the view. The scroll view's viewport is inverted to flip the entire component, and then each child is inverted again so that the content appears unflipped.