How to Check For Dark Mode in Xamarin.Forms

后端 未结 3 1883
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-17 05:56

Now that iOS 13 and Android Q allow the user to enable Dark Mode at the operating system level, how can I check for it in Xamarin.Forms?

I\'ve created this in my Xam

3条回答
  •  余生分开走
    2020-12-17 06:35

    For iOS:

    if (UITraitCollection.CurrentTraitCollection.UserInterfaceStyle == UIUserInterfaceStyle.Dark)
    { ... }
    

提交回复
热议问题