gpt4 book ai didi

ios - 为什么我们在react-native中使用ProgressViewIOS组件的progressImage属性?

转载 作者:行者123 更新时间:2023-11-28 07:36:43 25 4
gpt4 key购买 nike

为什么以及如何使用 progressImage <ProgressViewIOS/>中的属性(property)react-native 中的组件? documentation似乎不是很明白。任何人都可以在 iOS 上分享此属性的屏幕截图输出吗?谢谢!!!

最佳答案

progressImage 是用于在 ProgressViewIOS 中填充的进度条部分的图像。

如果您为其提供自定义图像,progressTintColor 属性将被忽略。

图片:

progressImage.png enter image description here

trackImage.png enter image description here

输出:

enter image description here

代码:

import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View, ProgressViewIOS, Dimensions} from 'react-native';

const screenWidth = Dimensions.get("screen").width;

type Props = {};
export default class App extends Component<Props> {
render() {
return (
<View style={styles.container}>
<ProgressViewIOS
style={{width: screenWidth - 30}}
progress={0.5}
progressViewStyle = 'default'
trackImage={require('./trackImage.png')}
progressImage={require('./progressImage.png')}
/>
</View>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
});

关于ios - 为什么我们在react-native中使用ProgressViewIOS组件的progressImage属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53096507/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com