Xamarin.Forms: Prevent dark mode on iOS, Android

To enforce light mode on the following platforms use this code

iOS Solution

Open up you info.plist file and add the following key:

<key>UIUserInterfaceStyle</key> 
<string>Light</string>

Android Solution

Put this code into your MainAcitivity.cs

AppCompatDelegate.DefaultNightMode = AppCompatDelegate.ModeNightNo;
This content has 2 years. Some of the information in this post may be out of date or no longer work. Please, read this page keeping its age in your mind.

2 thoughts on “Xamarin.Forms: Prevent dark mode on iOS, Android”

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.