React Native 之 獲取螢幕解析度

weixin_34194087發表於2016-12-16
獲取螢幕解析度

以下為ES6的寫法:

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

const {screenWidth,screenHeight} = Dimensions.get('window')

在使用時直接用screenWidth,screenHeight就可以獲取螢幕的寬高。

相關文章