unity-tidbits icon indicating copy to clipboard operation
unity-tidbits copied to clipboard

Add light system bars

Open Smooth-E opened this issue 2 years ago • 0 comments

Add ability to set VIEW_SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR (API 26) and VIEW_SYSTEM_UI_FLAG_LIGHT_STATUS_BAR (API 23). Both flags are deprecated in API 30 (source, source).

Other small changes in ApplicationChrome.cs:

  • Unfold comments and some long lines for better read-ability
  • Replace get { return _value } with get => _value
  • Replace using (...) { ... } with using ...

Didn't know you can not reopen PRs after force-pushing, so this is a new one :smiling_face_with_tear:

Smooth-E avatar Dec 25 '22 09:12 Smooth-E