LoginSignup
0
1

More than 3 years have passed since last update.

iOS,Androidのheightとwidthの値

Posted at

何回も値を確認することあがあるので自分用にメモする。

  • 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);

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1