何回も値を確認することあがあるので自分用にメモする。
-
iPhone11proMax
-
height:896
-
width:414
-
iPhone11pro
- height:812
- width:375
-
iPhone8
- height:667
- width:375
-
iPhoneSe
- height:568
-
width:320
-
GooglePixcel 3XL
- height:748.8571428571429
- width:411.42857142857144
自分の場合、ReactNativeで開発をしているので下記サイトを参考に端末のサイズ取得を行ってます.
https://qiita.com/mogamin3/items/1aad5fd2d03fb54e0dbf
Dimensionsって便利ですねー
const { width, height } = Dimensions.get('window');
console.log("height:"+height);
console.log("width:"+width);