English 中文(简体)
React Native - ScrollView
  • 时间:2024-10-18

React Native - ScrollView


Previous Page Next Page  

In this chapter, we will show you how to work with the ScrollView element.

We will again create ScrollViewExample.js and import it in Home.

App.js

import React from  react ;
import ScrollViewExample from  ./scroll_view.js ;

const App = () => {
   return (
      <ScrollViewExample />
   )
}export default App

Scrollview will render a pst of names. We will create it in state.

ScrollView.js

import React, { Component } from  react ;
import { Text, Image, View, StyleSheet, ScrollView } from  react-native ;

class ScrollViewExample extends Component {
   state = {
      names: [
         { name :  Ben ,  id : 1},
         { name :  Susan ,  id : 2},
         { name :  Robert ,  id : 3},
         { name :  Mary ,  id : 4},
         { name :  Daniel ,  id : 5},
         { name :  Laura ,  id : 6},
         { name :  John ,  id : 7},
         { name :  Debra ,  id : 8},
         { name :  Aron ,  id : 9},
         { name :  Ann ,  id : 10},
         { name :  Steve ,  id : 11},
         { name :  Opvia ,  id : 12}
      ]
   }
   render() {
      return (
         <View>
            <ScrollView>
               {
                  this.state.names.map((item, index) => (
                     <View key = {item.id} style = {styles.item}>
                        <Text>{item.name}</Text>
                     </View>
                  ))
               }
            </ScrollView>
         </View>
      )
   }
}
export default ScrollViewExample

const styles = StyleSheet.create ({
   item: {
      flexDirection:  row ,
      justifyContent:  space-between ,
      apgnItems:  center ,
      padding: 30,
      margin: 2,
      borderColor:  #2a4944 ,
      borderWidth: 1,
      backgroundColor:  #d2f7f1 
   }
})

When we run the app, we will see the scrollable pst of names.

React Native ScrollView Advertisements