ScrollView?

generic scrolling container that can contain multiple components and views

Examples

Simple ScrollView


import React from 'react';
import {Image, ScrollView, Text} from 'react-native';

const logo = {
  uri: 'https://reactnative.dev/img/tiny_logo.png',
  width: 64,
  height: 64,
};
const App = () => (
    <ScrollView>
        <Text style={{fontSize: 96}}>Scroll me plz</Text>
        <Image source={logo} />
        <Text style={{fontSize: 96}}>If you like</Text>
        <Image source={logo} />
    </ScrollView>
);

export default App;
                

ParallaxScrollView

A ScrollView-like component that:
  Has a parallax header(Header using parallax effect to create the illusion of depth)
  background header image moves at a different speed than the foreground content, creating a depth effect
  Has an optional sticky header
  Can be nested within other views
  Works on iOS and Android

ParallaxScrollView vs ScrollView

ParallaxScrollView ScrollView
Scrolling Behavior Parallax effect while scrolling Normal scrolling
Header Background Allows setting a headerBackgroundColor No background customization
Use Case Engaging UI with an animated background Standard scrolling pages