怎么在React中利用Native實現(xiàn)一個進度條彈框?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
我們提供的服務(wù)有:做網(wǎng)站、網(wǎng)站設(shè)計、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、眉山ssl等。為1000+企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的眉山網(wǎng)站制作公司
首先實現(xiàn)進度條。
import React, { PureComponent } from 'react'; import { StyleSheet, View, Animated, Easing, } from 'react-native'; class Bar extends PureComponent { constructor(props) { super(props); this.progress = new Animated.Value(this.props.initialProgress || 0); } static defaultProps = { style: styles, easing: Easing.inOut(Easing.ease) } componentWillReceiveProps(nextProps) { if (this.props.progress >= 0 && this.props.progress !== nextProps.progress) { this.update(nextProps.progress); } } shouldComponentUpdate() { return false; } update(progress) { Animated.spring(this.progress, { toValue: progress }).start(); } render() { return (); } } var styles = StyleSheet.create({ background: { backgroundColor: '#bbbbbb', height: 5, overflow: 'hidden' }, fill: { backgroundColor: 'rgba(0, 122, 255, 1)', height: 5 } }); export default Bar;
進度條的值我們用動畫實現(xiàn),避免使用state不斷去重新render渲染界面,同時設(shè)置shouldComponentUpdate返回值為false,避免重新render。
實現(xiàn)進度條彈框。
import React, { PropTypes, PureComponent } from 'react'; import { View, StyleSheet, Modal, Text, Dimensions, TouchableOpacity } from 'react-native'; import Bar from './Bar'; const { width } = Dimensions.get('window'); class ProgressBarDialog extends PureComponent { constructor(props) { super(props); } static propTypes = { ...Modal.propTypes, title: PropTypes.string, canclePress: PropTypes.func, cancleText: PropTypes.string, needCancle: PropTypes.bool }; static defaultProps = { animationType: 'none', transparent: true, progressModalVisible: false, onShow: () => {}, onRequestClose: () => {}, onOutSidePress: () => {}, title: '上傳文件', cancleText: '取消是', canclePress: () => {}, needCancle: true } render() { const { animationType, transparent, onRequestClose, progress, title, canclePress, cancleText, needCancle, progressModalVisible } = this.props; return (); } } const styles = StyleSheet.create({ progressBarView: { flex:1, justifyContent: 'center', alignItems: 'center', backgroundColor: 'rgba(0,0,0,0.2)' }, barStyle: { marginLeft: 10, marginRight: 10, width:width - 80 }, progressLeftText: { fontSize: 14 }, cancleContainer: { justifyContent: 'center', alignItems: 'flex-end' }, progressRightText: { fontSize: 14, color: '#666666' }, barBackgroundStyle: { backgroundColor: '#cccccc' }, progressContainer: { flexDirection: 'row', padding: 10, justifyContent: 'space-between' }, subView: { marginLeft: 30, marginRight: 30, backgroundColor: '#fff', alignSelf: 'stretch', justifyContent: 'center' }, progressView: { flexDirection: 'row', padding: 10, paddingBottom: 5, justifyContent: 'space-between' }, title: { textAlign: 'left', padding:10, fontSize: 16 }, cancleButton: { padding:10 }, cancleText: { textAlign: 'right', paddingTop: 0, fontSize: 16, color: 'rgba(0, 122, 255, 1)' } }); export default ProgressBarDialog; {title} {needCancle && {`${progress}`}% {`${progress}`}/100 } {cancleText}
props
modal的props - 這些都是modal的屬性
animationType - 動畫類型
transparent - 是否透明
progressModalVisible - 是否可見
onShow - 彈框出現(xiàn)
onRequestClose - 彈框請求消失(比如安卓按返回鍵會觸發(fā)這個方法)
onOutSidePress - 點擊彈框外部動作
title - 彈框的標題
cancleText - 取消的文字
canclePress - 取消動作
needCancle - 是否需要取消按鈕
使用代碼
import React , { PureComponent } from 'react'; import { View } from 'react-native'; import ProgressBarDialog from './ProgressBarDialog'; class Upload extends PureComponent { constructor(props) { this.state = { progress: 0, progressModalVisible: false }; } refProgressBar = (view) => { this.progressBar = view; } showProgressBar = () => { this.setState({ progressModalVisible: true }); } dismissProgressBar = () => { this.setState({ progress: 0, progressModalVisible: false }); } setProgressValue = (progress) => { this.setState({ progress }); } onProgressRequestClose = () => { this.dismissProgressBar(); } canclePress = () => { this.dismissProgressBar(); } render() { return () } } export default Upload;
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。