2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

expoでdefaultの画面の向きを設定する。

Last updated at Posted at 2019-06-08

alt

Expoには、ScreenOrientation Apiが存在し、このAPIを使って、スマホアプリの画面の向きを変えることが出来る。

しかし、もっと簡単な方法を見つけたので、共有する。

以下のように、app.jsonにアプリのデフォルトのランドスケープを記述出来た!

コード量が減るのが大きいし、パフォーマンスも良い!
ScreenOrientationよりこっちの方がスマートだねー

// app.json
{
  "expo": {
    ...
    "orientation": "landscape"
  }
}
2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?