zoukankan      html  css  js  c++  java
  • react-native中使用滚动视图

    ScrollView是一个通用的可滚动的容器,你可以在其中放入多个组件和视图,而且这些组件并不需要是同类型的。
    ScrollView 不仅可以垂直滚动,还能水平滚动(通过horizontal属性来设置)。
    先看效果gif图

    代码如下:

    import React, { Component } from 'react';
    import { AppRegistry, ScrollView, Image, Text } from 'react-native';
    
    export default class IScrolledDownAndWhatHappenedNextShockedMe extends Component {
      render() {
          return (
            <ScrollView>
              <Text style={{fontSize:96}}>Scroll me plz</Text>
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Text style={{fontSize:96}}>If you like</Text>
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Text style={{fontSize:96}}>Scrolling down</Text>
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Text style={{fontSize:96}}>What's the best</Text>
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Text style={{fontSize:96}}>Framework around?</Text>
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Image source={{uri: "https://facebook.github.io/react-native/img/favicon.png",  64, height: 64}} />
              <Text style={{fontSize:80}}>React Native</Text>
            </ScrollView>
        );
      }
    }
    

    ScrollView适合用来显示数量不多的滚动元素。放置在ScrollView中的所有组件都会被渲染,哪怕有些组件因为内容太长被挤出了屏幕外。
    如果你需要显示较长的滚动列表,那么应该使用功能差不多但性能更好的FlatList组件。

  • 相关阅读:
    js判断值是否为数字
    人脸识别 python调用face++ 功能测试
    【转载】Cesium基础使用介绍
    数据分析R&Python-Rpy2包环境配置
    VR/AR软件—Mirra测试(截至2017/11/13),使AR/VR创作更加便捷
    Cesium左右立体视觉续篇——遗留问题(渲染错误)以及临时替代方案
    在CesiumVR基础上实现3D左右立体视觉
    关于css样式的选择问题
    圣杯布局和双飞翼布局
    冒泡排序法
  • 原文地址:https://www.cnblogs.com/smart-girl/p/10642747.html
Copyright © 2011-2022 走看看