PixelRatio使用
Posted hualuoshuijia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PixelRatio使用相关的知识,希望对你有一定的参考价值。
export default class PixelRatioView extends Component { render() { return ( <View style={styles.container}> <Text style={styles.textStyle}> PixelRatio实例 </Text> <Text style={styles.textStyle}> 当前的屏幕像素密度比例为: {PixelRatio.get()} </Text> </View> ); } } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: ‘#ffffff‘, marginTop: 20 }, textStyle: { fontSize: 18, textAlign: ‘center‘, backgroundColor: ‘#ffffff‘, marginTop: 10 } });
以上是关于PixelRatio使用的主要内容,如果未能解决你的问题,请参考以下文章