Guest User

Untitled

a guest
Jul 17th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. render() {
  2. const isIos = Platform.OS === 'ios'
  3. const SPACER_SIZE = 1000; //arbitrary size
  4. const TOP_COLOR = 'white';
  5. const BOTTOM_COLOR = 'papayawhip';
  6. return (
  7. <ScrollView
  8. style={{backgroundColor: isIos ? BOTTOM_COLOR : TOP_COLOR }}
  9. contentContainerStyle={{backgroundColor: TOP_COLOR}}
  10. contentInset={{top: -SPACER_SIZE}}
  11. contentOffset={{y: SPACER_SIZE}}>
  12.  
  13. {isIos && <View style={{height: SPACER_SIZE}} />}
  14. //...your content here
  15.  
  16. </ScrollView>
  17. );
  18. }
Add Comment
Please, Sign In to add comment