4
4

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.

iPhoneXのレイアウトはXamarin.Formsでどうやって乗り切る?

Last updated at Posted at 2018-03-27

UWPとかでデバッグしてたから気づかなかったけど、iPhoneXのあの凹っとした上の部分とか、やたらと長い下の_の部分とか、どうすんの:dizzy_face:!?となったので調べました。

解決策

XCodeだったらSafeAreaっていうのを使うんですね。~~じゃああそこはDangerousAreaかな??~~え、固有のところでSafeArea使えよ、って設定すんの!??と思ったけど、そうじゃなかった。素敵。対応は以下。

設定したいPageにusingを追加

using Xamarin.Forms.PlatformConfiguration.iOSSpecific;

PageのコンストラクタでSafeAreaを設定

On<Xamarin.Forms.PlatformConfiguration.iOS>().SetUseSafeArea(true);

ここで注意したいのは
Nugetパッケージのバージョン!
Xamarin.Formsは2.4.0.74863以上に!!!

以上。また今度ちゃーんとまとめます。まずは投稿するクセをつける。

4
4
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
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?