()
| 17 | } |
| 18 | |
| 19 | public static boolean isDark() { |
| 20 | assert App._onUIThread() : "Should be run on UI thread"; |
| 21 | if (Platform.CURRENT != Platform.WINDOWS && Platform.CURRENT != Platform.MACOS) |
| 22 | return false; |
| 23 | return _nIsDark(); |
| 24 | } |
| 25 | |
| 26 | public static boolean isInverted() { |
| 27 | assert App._onUIThread() : "Should be run on UI thread"; |
no test coverage detected