András Tóth‘s professional blog
banditoth.net

Hey there 👋, I’m banditoth a .NET MAUI developer from Hungary.
I write about software development with .NET technologies.

You can find me on:
LinkedIn | Github | StackOverflow | X / Twitter | Threads

Tag: night mode

  • Xamarin.Forms: Prevent dark mode on iOS, Android

    This content has 3 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.

    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;