React-Native 七:Slider

來源:互聯網
上載者:User

標籤:

用於從一個值範圍選取一個值的組件。 一、屬性
名稱 類型 說明
disabled bool 如果為true,使用者無法移動這個滑動條。預設值為false。
maximumValue number 滑動條最大值。預設為1。
minimumValue number 滑動條最小值,預設為0。
onSlidingComplete function 當使用者完成值的改變被回調的方法。
onValueChange function 當使用者正在滑動滑動條持續回調的方法;
step number 滑動條的最小單位。這個值應該在0到最大值-最小值之間。預設為0。
testID string
value number 滑動條選擇的值。這個值應該在最小值和最大值之間,它們的預設值分別為0和1。預設值為0。
二、執行個體 index.andorid.js檔案
‘use strict‘;var React = require(‘react‘);var ReactNative = require(‘react-native‘);var {  AppRegistry,  StyleSheet,  View,  Text,  Slider,} = ReactNative;var SliderExample = React.createClass({  getDefaultProps: function(){    return {      value: 0,    };  },  getInitialState: function(){    return {      value: 0,    };  },  render: function(){     return (      <View>        <Text style={styles.text}>          {this.state.value && +this.state.value.toFixed(3)}        </Text>        <Slider          {...this.props}          onValueChange={(value) => this.setState({value: value})} />      </View>      );  },});var SlidingCompleteExample = React.createClass({  getInitialState: function(){    return {      slideCompletionValue: 0,      slideCompletionCount: 0,    };  },  render: function() {    return (      <View>        <SliderExample          {...this.props}          onSlidingComplete={(value) => this.setState({              slideCompletionValue: value,              slideCompletionCount: this.state.slideCompletionCount + 1})} />        <Text>          Completions: {this.state.slideCompletionCount} Value: {this.state.slideCompletionValue}        </Text>      </View>    );  }});var AwesomeProject = React.createClass({  render: function(){    return(      <View>        <SliderExample />        <SliderExample value={0.5} />        <SliderExample minimumValue={-1} maximumValue={2}/>        <SliderExample step={0.25} />        <SlidingCompleteExample />      </View>    );  }});var styles = StyleSheet.create({  slider:{    height: 10,    width: 10,  },  text:{    fontSize: 14,    textAlign: ‘center‘,    fontWeight: ‘500‘,    margin: 10,  },});AppRegistry.registerComponent(‘AwesomeProject‘, () => AwesomeProject);
運行結果:
提示1:在編寫完成代碼,Reload JS之後,程式運行報錯如下:
處理:通過react-native --version查看你當前的reat-native的版本。如果該版本不支援Slider控制項,則查閱《React-Native 學習十:React-Native升級》升級對對應的版本。並重新安裝App Reload;

React-Native 七:Slider

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.